Skip to content

Commit be1eeef

Browse files
committed
Add CHANGELOG.md entry checker to GHA workflows
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
1 parent 5f8c24e commit be1eeef

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
pull_request:
3+
4+
name: Changelog check
5+
6+
jobs:
7+
changelog:
8+
name: Changelog check
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout sources
12+
uses: actions/checkout@v2
13+
14+
- name: Changelog updated
15+
uses: Zomzog/changelog-checker@v1.1.0
16+
with:
17+
fileName: CHANGELOG.md
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)