diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index a66bd7cd66..44ad5a6177 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -20,14 +20,20 @@ categories: - title: '🚒 Deprecations' labels: - 'deprecated' + - title: '🔧 Maintenance' + labels: + - 'internal' + - 'dependencies' exclude-labels: - 'skip-changelog' tag-template: 'v$NEXT_PATCH_VERSION' template: | - ## Changes + ## Summary **[Human readable summary of changes]** + ## Changes + $CHANGES ## This release was made possible by the following contributors: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000000..67f7eb268e --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,14 @@ +name: Release Drafter + +on: + push: + branches: + - main + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5.15.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}