Skip to content

Commit

Permalink
feat: add github workflow of create-awf-latest.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 committed Dec 27, 2023
1 parent 440a7d0 commit c85150b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/create-awf-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: create-awf-latest

on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:

jobs:
create-awf-latest:
runs-on: ubuntu-latest
steps:
- 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 c85150b

Please sign in to comment.