Skip to content

Commit

Permalink
Step 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimacurrentai committed Dec 31, 2023
1 parent c9e60eb commit 007f3dc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/trivial_step1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
trivial_step1:
runs-on: ubuntu-latest
steps:
- name: trivial
- name: trivial1
run: |
echo "Step 1 - OK"
14 changes: 14 additions & 0 deletions .github/workflows/trivial_step2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: trivial_step2

on:
workflow_run:
workflows: [trivial_step1]
types: [completed]

jobs:
trivial_step2:
runs-on: ubuntu-latest
steps:
- name: trivial2
run: |
echo "Step 2: OK"

0 comments on commit 007f3dc

Please sign in to comment.