forked from RollingPaper42/Front-End
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (24 loc) · 1006 Bytes
/
run.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Sync and merge upstream repository
on:
workflow_dispatch:
schedule: "*/5 * * * *" #Runs at 8:00 UTC(5:00 in Korea) every day.
jobs:
merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Merge upstream
run: |
git config --global user.name 'arkingco'
git config --global user.email 'arkingco@gmail.com'
# "git checkout master" is unnecessary, already here by default
git pull --unshallow # this option is very important, you would get
# complains about unrelated histories without it.
# (but actions/checkout@v2 can also be instructed
# to fetch all git depth right from the start)
git remote add upstream https://github.com/RollingPaper42/Front-End.git
git fetch upstream
git checkout main
git merge -Xtheirs upstream/main
git push origin main
# etc