Add scheduled maintenance workflow

This commit is contained in:
2026-03-19 22:34:49 -04:00
parent 476231986a
commit 40846af518

View File

@@ -0,0 +1,17 @@
name: Weekly Maintenance
on:
schedule:
- cron: '0 0 * * 0' # Every Sunday at midnight
workflow_dispatch:
jobs:
maintain:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run maintenance script
run: |
chmod +x scripts/maintenance.sh
./scripts/maintenance.sh