Skip to content

Commit c5cfa8f

Browse files
authored
Merge pull request #3 from korenyoni/fix/changelog
Fix: changelog automation
2 parents 2cf98fb + fee74b6 commit c5cfa8f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/changelog-from-release.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@ name: "Changelog from Release"
22

33
on:
44
release:
5-
types: [published]
5+
types: [published, released]
66

77
jobs:
88
update_changelog:
99
runs-on: ubuntu-latest
1010
steps:
11+
- uses: actions/checkout@v3
12+
with:
13+
ref: master
1114
- uses: rhysd/changelog-from-release/action@v3
1215
with:
1316
file: CHANGELOG.md
14-
github_token: ${{ secrets.GITHUB_TOKEN }}
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
commit_summary_template: 'Update CHANGELOG.md for %s'

0 commit comments

Comments
 (0)