diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 98df43ddb77..9ddad7dac1b 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -12,11 +12,6 @@ categories: - 'bug' - title: '🧰 Maintenance' label: 'chore' - - title: 'Community release' - label: - - major - - minor - - patch change-template: '- $TITLE @$AUTHOR (#$NUMBER)' change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. autolabeler: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 978ab894f75..284256f222d 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -2,12 +2,19 @@ name: Release Drafter on: push: branches: - - main - releases jobs: update_release_draft: runs-on: ubuntu-latest steps: + - name: Bump version and push tag + uses: anothrNick/github-tag-action@1.36.0 + env: + GITHUB_TOKEN: ${{ secrets.COMPOSABLE_GITHUB_TOKEN }} + WITH_V: true + - uses: release-drafter/release-drafter@v5 env: GITHUB_TOKEN: ${{ secrets.COMPOSABLE_GITHUB_TOKEN }} + +