Add a Github Action to ensure the CHANGELOG is updated in PRs

This commit is contained in:
Clément Renault 2020-03-27 18:44:19 +01:00
parent c3467313e5
commit 227bc716d8
No known key found for this signature in database
GPG Key ID: 0151CDAB43460DAE
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
name: Check if the CHANGELOG.md has been updated
on: [pull_request]
jobs:
check:
name: Test on ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checking the CHANGELOG.md has been updated in this PR
run: |
set -e
git fetch origin ${{ github.base_ref }}
git diff --name-only origin/${{ github.base_ref }} | grep -q CHANGELOG.md