File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 77 workflow_dispatch :
88
99jobs :
10+ advance_main :
11+ name : " Advance main"
12+ runs-on : ubuntu-20.04
13+ steps :
14+ - name : Checking out repository
15+ uses : actions/checkout@v2
16+ with :
17+ token : ${{ secrets.WRITE_ACCESS_TOKEN }}
18+ ref : main
19+
20+ - name : Pull upstream main
21+ run : |
22+ git remote add upstream https://github.com/llvm/llvm-project.git
23+ git fetch upstream main
24+ git pull --ff-only upstream main
25+
26+ - name : Pushing changes
27+ 28+ with :
29+ github_token : ${{ secrets.WRITE_ACCESS_TOKEN }}
30+ branch : main
31+
1032 advance_mainline :
1133 name : " Advance mainline"
1234 runs-on : ubuntu-20.04
1739 token : ${{ secrets.WRITE_ACCESS_TOKEN }}
1840 ref : mainline
1941
20- - name : Pull upstream main
42+ - name : Pull upstream mainline
2143 run : |
2244 git remote add upstream https://github.com/llvm/llvm-project.git
2345 git fetch upstream main
You can’t perform that action at this time.
0 commit comments