We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e102c2 commit 99580c9Copy full SHA for 99580c9
1 file changed
.github/workflows/depdent_jobs.yml
@@ -0,0 +1,34 @@
1
+
2
+on:
3
+ push:
4
5
+jobs:
6
+ job1:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: job1 step 1
10
+ run: echo "hell"
11
12
+ - name: skeep
13
+ run: sleep()
14
15
+ job2:
16
17
+ needs: job1
18
19
+ - name: echo
20
+ run: echo "job2"
21
22
23
+ job3:
24
25
26
+ - name: print
27
28
29
+ job4:
30
31
+ needs: [job2,job3]
32
33
34
+ run: echo "job4"
0 commit comments