Skip to content

Commit 4f7e8ef

Browse files
authored
Add release notes step in GH Actions (#581)
Instead of using a Github App on the repo, we can move to use the new GH Action release-drafter so the release notes are updated on every merge to master
1 parent e73b9b3 commit 4f7e8ef

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,11 @@ jobs:
4141
with:
4242
token: ${{ secrets.CODECOV_TOKEN }}
4343
yml: ./codecov.yml
44+
45+
release-notes:
46+
runs-on: ubuntu-latest
47+
steps:
48+
- name: Release Drafter
49+
uses: release-drafter/release-drafter@v5
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)