Feat(fortune): ci add special event checker

This commit is contained in:
2025-01-16 23:57:57 +08:00
parent caa59577dd
commit 9d0fe3f099
2 changed files with 415 additions and 0 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 dev/check-events.py fortune_generator/json/custom_special.json custom
- name: Check Static Special Events
run: |
python3 dev/check-events.py fortune_generator/json/static_special.json static
- name: Check Cyclical Special Events
run: |
python3 dev/check-events.py fortune_generator/json/cyclical_special.json cyclical