Skip to content

Commit ad06648

Browse files
authored
Create changelog.yml
1 parent fe2b6c1 commit ad06648

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: On release published
2+
on:
3+
release:
4+
types: [released]
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)