From 212f69b1252b89c0247f4fa275630a52dbd87db2 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 25 Nov 2025 10:20:59 +0530 Subject: [PATCH] chore: Remove step to commit Supabase backup SQL files to repository. --- .github/workflows/backup.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/backup.yml b/.github/workflows/backup.yml index 8c92c38f..c439acda 100644 --- a/.github/workflows/backup.yml +++ b/.github/workflows/backup.yml @@ -76,24 +76,6 @@ jobs: retention-days: 30 compression-level: 9 - - name: Commit SQL files to repository (optional) - if: success() - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - - # Add only SQL files (exclude large binary dump) - git add supabase_snapshot/*.sql || true - git add supabase_snapshot/backup_info.txt || true - - # Check if there are changes to commit - if git diff --staged --quiet; then - echo "No changes to commit" - else - git commit -m "chore: update Supabase backup SQL files [skip ci]" - git push - fi - - name: Generate job summary if: always() run: |