Create enforce-changelog.yml

This commit is contained in:
Michael Teeuw 2020-12-21 12:36:59 +01:00 committed by GitHub
parent 3dbe8bfbbf
commit cdb8d35cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
.github/workflows/enforce-changelog.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: "Enforce Changelog"
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
jobs:
# Enforces the update of a changelog file on every pull request
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dangoslen/changelog-enforcer@v1.6.1
with:
changeLogPath: 'CHANGELOG.md'
skipLabels: 'Skip-Changelog'