diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 000000000..364976e94 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,4 @@ +_extends: .github + +name-template: 'next' +tag-template: 'next' diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 000000000..2271c08ab --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,17 @@ +--- +name: Release Drafter + +on: + push: + branches: + - main + +jobs: + update_release_draft: + runs-on: ubuntu-20.04 + steps: + - uses: release-drafter/release-drafter@v5 + env: + # This token is generated automatically by default in GitHub Actions: no need to create it manually + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +...