Merge pull request #857 from heroku/schneems/check-changelog

[changelog skip] Ensure PRs include a Changelog entry
This commit is contained in:
Casey
2019-09-27 17:41:49 -07:00
committed by GitHub
+12
View File
@@ -0,0 +1,12 @@
name: Check Changelog
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check that CHANGELOG is touched
run: |
cat $GITHUB_EVENT_PATH | jq .pull_request.title | grep -i '[((changelog skip)|(ci skip))]' || git diff remotes/origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md