From 7d1b996bb7c10d33330ed645c8cfd1fc302a93e0 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Sun, 22 Mar 2026 21:17:45 -0400 Subject: [PATCH] fix: trigger docs sync on develop instead of main --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14b1db2c..9eb8b37d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -163,7 +163,7 @@ jobs: sync-docs: runs-on: ubuntu-latest - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + if: github.event_name == 'push' && github.ref == 'refs/heads/develop' steps: - name: Checkout Sencho repo uses: actions/checkout@v4 @@ -186,5 +186,5 @@ jobs: git config user.email "docs-bot@sencho.io" git config user.name "Sencho Docs Bot" git add -A - git commit -m "docs: sync from main@${{ github.sha }}" || echo "No changes to commit" + git commit -m "docs: sync from develop@${{ github.sha }}" || echo "No changes to commit" git push