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: |