diff --git a/.github/workflows/run-scenario-test-for-common-scenarios.yml b/.github/workflows/run-scenario-test-for-common-scenarios.yml new file mode 100644 index 0000000000000..256dd146d4c90 --- /dev/null +++ b/.github/workflows/run-scenario-test-for-common-scenarios.yml @@ -0,0 +1,24 @@ +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 add . + git checkout -b popopo + git commit --amend --no-edit + + git push --force \ No newline at end of file