Skip to content

Commit a80479a

Browse files
committed
chore: prod 환경 브랜치 main으로 변경
1 parent 519ecdb commit a80479a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/autoSync.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: Synchronize to forked repo
22
on:
33
push:
44
branches:
5-
- develop
5+
- main
66

77
jobs:
88
sync:
99
name: Sync forked repo
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- name: Checkout develop
13+
- name: Checkout main
1414
uses: actions/checkout@v4
1515
with:
1616
token: ${{ secrets.AUTO_SYNC_TOKEN }}
1717
fetch-depth: 0
18-
ref: develop
18+
ref: main
1919

2020
- name: Add remote-url
2121
run: |
@@ -25,7 +25,7 @@ jobs:
2525
2626
- name: Push changes to forked-repo
2727
run: |
28-
git push -f forked-repo develop
28+
git push -f forked-repo main
2929
3030
- name: Clean up
3131
run: |

0 commit comments

Comments
 (0)