Commit 9816a83 1 parent ceabdaa commit 9816a83 Copy full SHA for 9816a83
File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,19 @@ jobs:
10
10
uses : ./.github/workflows/executeGradleTask.yml
11
11
with :
12
12
task-name : test1
13
- secrets : inherit
14
13
15
14
job2 :
16
15
uses : ./.github/workflows/executeGradleTask.yml
17
16
with :
18
17
task-name : test2
19
- secrets : inherit
20
18
21
19
job3 :
22
20
uses : ./.github/workflows/executeGradleTask.yml
23
21
with :
24
22
task-name : test3
25
- secrets : inherit
23
+
24
+ job4 :
25
+ uses : ./.github/workflows/executeGradleTask.yml
26
+ with :
27
+ task-name : test4
28
+ needs : [job1]
Original file line number Diff line number Diff line change @@ -78,6 +78,10 @@ tasks.register("test3") {
78
78
println (" hi test3" )
79
79
}
80
80
81
+ tasks.register(" test4" ) {
82
+ println (" hi test4" )
83
+ }
84
+
81
85
allOpen {
82
86
annotation(" jakarta.persistence.Entity" )
83
87
}
You can’t perform that action at this time.
0 commit comments