Skip to content

Commit

Permalink
ci: test triger
Browse files Browse the repository at this point in the history
  • Loading branch information
uhobeike committed May 14, 2024
1 parent 6c75f9c commit 3e7b166
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rerun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ on:
types: [completed]

jobs:
check-conclusion:
runs-on: ubuntu-latest
steps:
- 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' }}
Expand Down

0 comments on commit 3e7b166

Please sign in to comment.