Skip to content

Commit 1f8ac49

Browse files
committed
Add changelog ci for github release
1 parent 1d981ec commit 1f8ac49

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/changelog.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release changelog
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
changelog:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
with:
15+
ref: master
16+
17+
- uses: rhysd/changelog-from-release/action@v3
18+
with:
19+
file: CHANGELOG.md
20+
pull_request: true
21+
github_token: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)