Skip to content

Dependent Workflow

Dependent Workflow #2

Workflow file for this run

name: Dependent Workflow
on:
workflow_run:
workflows: ["Main Workflow"]
types:
- completed
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Run a one-line script
run: echo "Hello, this is the dependent workflow running after the main workflow!"