Skip to content

Commit

Permalink
test base
Browse files Browse the repository at this point in the history
  • Loading branch information
nadinjb authored Oct 1, 2024
1 parent caa67bf commit 2577efe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/run_workflow_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,15 @@ on:
workflow_run:
workflows: [Blockifier-CI-Test]
types: [completed]

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

0 comments on commit 2577efe

Please sign in to comment.