mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
26 lines
507 B
YAML
26 lines
507 B
YAML
# 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
|