[PC-1439] update from upstream: from v.14.0.x to v15.2.0 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CHANGELOG Checks | |
on: | |
pull_request: | |
paths: | |
- CHANGELOG.md | |
jobs: | |
changelog-check: | |
name: CHANGELOG Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail the check if changelog change | |
run: |- | |
echo "Thank you for your contribution!" | |
echo "" | |
echo "The 'CHANGELOG.md' file contents are handled by the maintainers during merge. This is to prevent pull request merge conflicts." | |
echo "Please see the Contributing Guide for additional pull request review items." | |
echo "" | |
echo "Remove any changes to the 'CHANGELOG.md' file and commit them in this pull request." | |
exit 1 |