Skip to content

Commit 44b25d3

Browse files
authored
feat: add github workflow of create-awf-latest.yml (#1082)
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
1 parent 440a7d0 commit 44b25d3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: create-awf-latest
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
create-awf-latest:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
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"
19+
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)