Files
life_generators/.github/workflows/check-events.yml
tobiichi3227 b82b3f366e 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
2025-02-06 17:25:23 +08:00

36 lines
1013 B
YAML

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