Skip to content

Commit

Permalink
po
Browse files Browse the repository at this point in the history
  • Loading branch information
takayuki5168 committed Dec 27, 2023
1 parent 146946c commit 1a856dc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-scenario-test-for-common-scenarios.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1a856dc

Please sign in to comment.