File tree 2 files changed +12
-42
lines changed
2 files changed +12
-42
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
sync-awf-latest :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - name : Generate token
13
- id : generate-token
14
- uses : tibdex/github-app-token@v1
12
+ - uses : actions/checkout@v2
15
13
with :
16
- app_id : ${{ secrets.APP_ID }}
17
- private_key : ${{ secrets.PRIVATE_KEY }}
14
+ fetch-depth : 0
15
+ - name : Commit Results
16
+ run : |
17
+ git config --local user.email "action@github.com"
18
+ git config --local user.name "GitHub Action"
18
19
19
- - name : Run sync-branches
20
- uses : autowarefoundation/autoware-github-actions/sync-branches@v1
21
- with :
22
- token : ${{ steps.generate-token.outputs.token }}
23
- base-branch : awf-latest
24
- sync-pr-branch : sync-awf-latest
25
- sync-target-repository : https://github.com/autowarefoundation/autoware.universe.git
26
- sync-target-branch : main
27
- pr-title : " chore: sync awf-latest"
28
- pr-labels : |
29
- bot
30
- auto-merge-method : merge
20
+ git checkout awf-latest
21
+ git remote add awf https://github.com/autowarefoundation/autoware.universe
22
+ git fetch awf main
23
+ git rebase awf/main
24
+
25
+ git push origin awf-latest --force
You can’t perform that action at this time.
0 commit comments