Feat(fortune): ci add special event checker (#50)

* Feat(fortune): ci add special event checker

* Chore(Fortune): Move all scripts from `dev` to `scripts` and remove outdated scripts
This commit was merged in pull request #50.
This commit is contained in:
tobiichi3227
2025-02-06 17:25:23 +08:00
committed by GitHub
parent caa59577dd
commit b82b3f366e
5 changed files with 415 additions and 331 deletions

35
.github/workflows/check-events.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Check special events
on:
pull_request:
paths:
- 'fortune_generator/json/custom_special.json'
- 'fortune_generator/json/static_special.json'
- 'fortune_generator/json/cyclical_special.json'
push:
paths:
- 'fortune_generator/json/custom_special.json'
- 'fortune_generator/json/static_special.json'
- 'fortune_generator/json/cyclical_special.json'
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Check Custom Special Events
run: |
python3 scripts/check-events.py fortune_generator/json/custom_special.json custom
- name: Check Static Special Events
run: |
python3 scripts/check-events.py fortune_generator/json/static_special.json static
- name: Check Cyclical Special Events
run: |
python3 scripts/check-events.py fortune_generator/json/cyclical_special.json cyclical