Skip to content

Commit f499ec2

Browse files
committed
Add GitHub action to ensure CHANGELOG is updated in PRs
1 parent c837abc commit f499ec2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/changelog.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Ensure CHANGELOG updated
2+
3+
on:
4+
pull_request:
5+
types: [ assigned, opened, synchronize, reopened, labeled, unlabeled ]
6+
branches: [ main ]
7+
8+
jobs:
9+
changelog:
10+
name: Ensure changelog updated
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Changelog check
14+
uses: Zomzog/[email protected]
15+
with:
16+
fileName: CHANGELOG.md
17+
noChangelogLabel: no-changelog
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)