From 40846af518add6847cec2d76a51921118ce72374 Mon Sep 17 00:00:00 2001 From: Google AI Studio Wizard Date: Thu, 19 Mar 2026 22:34:49 -0400 Subject: [PATCH] Add scheduled maintenance workflow --- .gitea/workflows/maintenance.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/maintenance.yaml diff --git a/.gitea/workflows/maintenance.yaml b/.gitea/workflows/maintenance.yaml new file mode 100644 index 0000000..1e695bb --- /dev/null +++ b/.gitea/workflows/maintenance.yaml @@ -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