Skip to content

Commit

Permalink
Added CI job to check CHANGELOG.md for updates (#3607)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzenioszeniou committed Sep 22, 2021
1 parent 69b20a7 commit 8a967bd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/changelog.yml
@@ -0,0 +1,16 @@
name: CHANGELOG

on:
pull_request:

jobs:
diff_changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: git fetch origin master
- run: |
if [[ ! `git diff --exit-code origin/master -- CHANGELOG.md` ]]
then
echo "::warning file=CHANGELOG.md::CHANGELOG.md was not updated"
fi

0 comments on commit 8a967bd

Please sign in to comment.