Skip to content

Commit f3ba58f

Browse files
authored
feat: sync with awf/autoware.universe by force-push (#1115)
* feat: sync with awf/autoware.universe by force-push Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * fix Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
1 parent 6f0fd05 commit f3ba58f

File tree

2 files changed

+12
-42
lines changed

2 files changed

+12
-42
lines changed

.github/workflows/create-awf-latest.yml

-25
This file was deleted.

.github/workflows/sync-awf-latest.yaml

+12-17
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,17 @@ jobs:
99
sync-awf-latest:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Generate token
13-
id: generate-token
14-
uses: tibdex/github-app-token@v1
12+
- uses: actions/checkout@v2
1513
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"
1819
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

0 commit comments

Comments
 (0)