Skip to content

Commit

Permalink
Add CHANGELOG.md entry checker to GHA workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
  • Loading branch information
therealprof committed Apr 13, 2021
1 parent 5f8c24e commit a13c1bb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
pull_request_target:

name: Changelog check

jobs:
changelog:
name: Changelog check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Changelog updated
uses: Zomzog/changelog-checker@v1.1.0
with:
fileName: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a13c1bb

Please sign in to comment.