feat: add language and quality migrations + validation CI to keep up to date with sonarr/radarr

This commit is contained in:
Sam Chau
2025-11-01 03:42:27 +10:30
parent 0e1750acd1
commit d0304cb658
5 changed files with 221 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
name: Validate
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate Languages
run: ./scripts/validateLanguages.sh
- name: Validate Qualities
run: ./scripts/validateQualities.sh
if: always()