run-scenario-test-for-common-scenarios #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-scenario-test-for-common-scenarios | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 15 * * *' # run analyze_result at 0:00 JST (15:00 UTC previous day) | |
jobs: | |
run-scenario-test-for-common-scenarios: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Commit Results | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git remote add awf git@github.com:autowarefoundation/autoware.universe | |
git fetch awf | |
git checkout -b popopo | |
git rebase awf/main | |
git commit --amend --no-edit | |
git push origin popopo --force |