diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc18f00..1898ce6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,11 @@ +# https://docs.github.com/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates + version: 2 updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" - package-ecosystem: "nuget" directory: "/" schedule: diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index bb25443..7d21a3a 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,12 +1,12 @@ -# Configuration for Release Drafter: https://github.com/toolmantim/release-drafter +# Configuration for Release Drafter: https://github.com/release-drafter/release-drafter + name-template: WinSW v$NEXT_PATCH_VERSION tag-template: v$NEXT_PATCH_VERSION -# This repo follows the Semantic Versioning 2.0.0 approach: https://semver.org/ + +# This repo follows the Semantic Versioning 2.0.0 convention: https://semver.org/spec/v2.0.0.html version-template: $MAJOR.$MINOR.$PATCH -template: | - - $CHANGES +template: $CHANGES # Emoji reference: https://gitmoji.carloscuesta.me/ categories: @@ -14,18 +14,18 @@ categories: label: removed - title: ⚠️ Deprecated label: deprecated - - title: ":tada: New features" + - title: 🎉 New features label: new-feature - title: 🚀 Enhancements label: enhancement - - title: 🐛 Bug Fixes + - title: 🐛 Bug fixes label: bug - - title: ":package: Packaging changes" + - title: 📦 Packaging changes label: packaging - title: 📝 Documentation updates label: documentation # Default label used by Dependabot - - title: ":arrow_up: Dependency updates" + - title: ⬆️ Dependency updates label: dependencies - title: 👻 Maintenance labels: diff --git a/.github/workflows/changelog-management.yml b/.github/workflows/changelog-management.yml index 1d0d27b..314239a 100644 --- a/.github/workflows/changelog-management.yml +++ b/.github/workflows/changelog-management.yml @@ -1,16 +1,11 @@ -name: Release Management +name: Changelog Management -on: - push: - # branches to consider in the event; optional, defaults to all - branches: - - master +on: workflow_dispatch jobs: update_draft_release: runs-on: ubuntu-latest steps: - # Drafts your next Release notes as Pull Requests are merged into "master" - - uses: toolmantim/release-drafter@v5.11.0 + - uses: release-drafter/release-drafter@v5.13.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}