9 - Branch Based Workflow Execution - Final #39
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: 9 - Branch Based Workflow Execution - Final | |
on: | |
workflow_run: | |
workflows: ["9 - Branch Based Workflow Execution - Develop", "9 - Branch Based Workflow Execution - Master"] | |
types: [completed] | |
branches: | |
- develop | |
jobs: | |
final-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo Final Step | |
run: echo "The previous workflow ran on the develop branch." |