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 7
7
workflow_dispatch :
8
8
9
9
jobs :
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
+ uses : ad-m/github-push-action@v0.6.0
28
+ with :
29
+ github_token : ${{ secrets.WRITE_ACCESS_TOKEN }}
30
+ branch : main
31
+
10
32
advance_mainline :
11
33
name : " Advance mainline"
12
34
runs-on : ubuntu-20.04
17
39
token : ${{ secrets.WRITE_ACCESS_TOKEN }}
18
40
ref : mainline
19
41
20
- - name : Pull upstream main
42
+ - name : Pull upstream mainline
21
43
run : |
22
44
git remote add upstream https://github.com/llvm/llvm-project.git
23
45
git fetch upstream main
You can’t perform that action at this time.
0 commit comments