Skip to content

Commit

Permalink
Sequential workflows example - second workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
olsido authored Jul 19, 2024
1 parent 459b8e5 commit fd74e64
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/7-sequential-workflows-second.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 7 - Second Workflow

on:
workflow_run:
workflows: ["7 - First Workflow"]
types:
- completed

jobs:
second-workflow-job:
runs-on: ubuntu-latest
steps:
- name: Second Workflow Only Step
run: echo "This is the second workflow"

0 comments on commit fd74e64

Please sign in to comment.