Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 committed Jan 23, 2024
1 parent 73af3cb commit 467ca7d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 32 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/create-awf-latest.yml

This file was deleted.

21 changes: 14 additions & 7 deletions .github/workflows/sync-awf-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@ jobs:
sync-awf-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
git remote add awf [email protected]:autowarefoundation/autoware_launch
git fetch awf
git checkout awf/main
git checkout -b awf-latest
git push origin awf-latest -f
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Commit Results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout awf-latest
git remote add awf https://github.com/autowarefoundation/autoware.universe
git fetch awf main
git rebase awf/main
git push origin awf-latest --force

0 comments on commit 467ca7d

Please sign in to comment.