8 - Sequential Workflows - Final #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 8 - Sequential Workflows - Final | |
on: | |
workflow_run: | |
workflows: ["8 - Sequential Workflows - Success", "8 - Sequential Workflows - Failure"] | |
types: [completed] | |
jobs: | |
on-success: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Success Job Step | |
run: echo "The previous workflow succeeded, so this job will run." | |
on-failure: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
steps: | |
- name: Failure Job Step | |
run: echo "The previous workflow failed, so this job will run." |