We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06aa927 commit 255d7f6Copy full SHA for 255d7f6
1 file changed
.github/workflows/work.yml
@@ -4,24 +4,16 @@ on:
4
jobs:
5
my_jobs:
6
runs-on: ubuntu-latest
7
+ needs: your_jobs
8
steps:
9
- name: group logging
10
run: |
11
echo "::group:: Myd group Msg"
12
echo "MSG 1"
13
echo "::endgroup::"
14
+
15
your_jobs:
- needs: my_jobs
16
runs_on: ubuntu_latest
-
17
18
- name: print it
19
run: echo "Hello from a self-hosted runner!"
20
21
- her_job:
22
- needs: [my_jobs, your_jobs]
23
- runs_on: ubuntu_latest
24
25
- steps:
26
- - name: print it
27
- run: echo "Hello from a self-hosted runner!"
0 commit comments