Merge branch 'refs/heads/main' into ci-cc-win #23
Workflow file for this run
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
# check the changelog for non ascii characters | |
name: Check CHANGELOG.md | |
on: | |
push: | |
paths: | |
- 'CHANGELOG.md' | |
pull_request: | |
paths: | |
- 'CHANGELOG.md' | |
jobs: | |
check: | |
name: Check CHANGELOG.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- run: | | |
if grep -q -P -n "[\x80-\xFF]" CHANGELOG.md | |
then | |
exit 1; | |
fi |