Skip to content

Sanity Check

Sanity Check #7

Workflow file for this run

name: Sanity Check
on:
workflow_run:
workflows:
- Test
types:
- completed
- requested
- in_progress
jobs:
always:
runs-on: ubuntu-latest
steps:
- run: echo ${{ github.event.workflow_run.action}}
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'