Skip to content

run-scenario-test-for-common-scenarios #4

run-scenario-test-for-common-scenarios

run-scenario-test-for-common-scenarios #4

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