Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool authored Jun 9, 2024
1 parent 2779c04 commit f488100
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/check-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# check the changelog for non ascii characters
name: Check CHANGELOG.md

on:
push:
paths:
- 'CHANGELOG.md'
pull_request:
paths:
- 'CHANGELOG.md'

jobs:
check:
name: Trigger site build
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Geode Changelog

## v3.0.0-alpha.1
## v3.0.0-alpha.1 mat
* Deprecated the old web API, replacing it with a new one (b129808)
* Replace `ghc::filesystem` with `std::filesystem` (#713)
* Make `queueInMainThread` take a move only function
Expand Down

0 comments on commit f488100

Please sign in to comment.