Skip to content

Commit

Permalink
ci: trigger test
Browse files Browse the repository at this point in the history
  • Loading branch information
uhobeike committed May 14, 2024
1 parent 9326dcb commit 3313b93
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/rerun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,16 @@ jobs:
check-conclusion:
runs-on: ubuntu-latest
steps:
- run: echo 'konnichiwa'
- run: echo 'Workflow conclusion: ${{ github.event.workflow_run.conclusion }}'

on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'

on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- run: echo 'The triggering workflow failed'

0 comments on commit 3313b93

Please sign in to comment.