Skip to content

Commit c8a36a9

Browse files
authored
Update manual.yml
1 parent 7accfd3 commit c8a36a9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/manual.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
sync:
9-
name: Sync forked repo
9+
name: Sync SeungAhSon repo to kaist-vil.github.io
1010
runs-on: ubuntu-latest
1111

1212
steps:
@@ -15,18 +15,18 @@ jobs:
1515
with:
1616
token: ${{ secrets.MY_REPO_TOKEN }}
1717
fetch-depth: 0
18-
ref: main
18+
ref: master
1919

20-
- name: Add remote-url
20+
- name: Add remote URL for KAIST-VIL repo
2121
run: |
22-
git remote add forked-repo https://KAIST-VIL:${{ secrets.FORKED_REPO_TOKEN }}@github.com/KAIST-VIL/kaist-vil.github.io
22+
git remote add kaist-vil https://KAIST-VIL:${{ secrets.MY_REPO_TOKEN }}@github.com/KAIST-VIL/kaist-vil.github.io
2323
git config user.name SeungAhSon
2424
git config user.email gongsoonyee@gmail.com
2525
26-
- name: Push changes to forked-repo
26+
- name: Push changes to kaist-vil.github.io repo
2727
run: |
28-
git push -f forked-repo main
28+
git push -f kaist-vil master
2929
30-
- name: Clean up
30+
- name: Clean up remote
3131
run: |
32-
git remote remove forked-repo
32+
git remote remove kaist-vil

0 commit comments

Comments
 (0)