Skip to content

Commit 2a39491

Browse files
Create Changelog post release
1 parent d8da96f commit 2a39491

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/post-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Post release
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
changelog:
8+
name: Update changelog
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
ref: master
14+
- uses: rhysd/changelog-from-release/action@v2
15+
with:
16+
file: CHANGELOG.md
17+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)