You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
2 years ago
|
name: changelog
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types:
|
||
|
- opened
|
||
|
- synchronize
|
||
|
- labeled
|
||
|
- unlabeled
|
||
|
|
||
|
concurrency:
|
||
|
group: changelog-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ignore-changelog') }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Check diff
|
||
|
run: |
|
||
|
git fetch origin ${{ github.base_ref }} --depth=1
|
||
|
if git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md ; then
|
||
|
echo 'Missing changelog entry'
|
||
|
exit 1
|
||
|
fi
|
||
|
|