From a80479a163af15c3ba23d29dad4e9aa45df1b4da Mon Sep 17 00:00:00 2001 From: Sumin Hwang <163857590+tnals0924@users.noreply.github.com> Date: Sun, 18 May 2025 15:08:44 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20prod=20=ED=99=98=EA=B2=BD=20=EB=B8=8C?= =?UTF-8?q?=EB=9E=9C=EC=B9=98=20main=EC=9C=BC=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/autoSync.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autoSync.yml b/.github/workflows/autoSync.yml index 9e0f29b..5cf9763 100644 --- a/.github/workflows/autoSync.yml +++ b/.github/workflows/autoSync.yml @@ -2,7 +2,7 @@ name: Synchronize to forked repo on: push: branches: - - develop + - main jobs: sync: @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout develop + - name: Checkout main uses: actions/checkout@v4 with: token: ${{ secrets.AUTO_SYNC_TOKEN }} fetch-depth: 0 - ref: develop + ref: main - name: Add remote-url run: | @@ -25,7 +25,7 @@ jobs: - name: Push changes to forked-repo run: | - git push -f forked-repo develop + git push -f forked-repo main - name: Clean up run: |