We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440a7d0 commit 44b25d3Copy full SHA for 44b25d3
.github/workflows/create-awf-latest.yml
@@ -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