We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49da633 commit 4ea405dCopy full SHA for 4ea405d
.github/workflows/02-basic-multiple-jobs-needs.yml
@@ -24,10 +24,18 @@ jobs:
24
# Runs a single command using the runners shell
25
- name: Run a one-line script
26
run: echo Hello from job1
27
+ job1a:
28
+ # The type of runner that the job will run on
29
+ runs-on: ubuntu-latest
30
+ # Steps represent a sequence of tasks that will be executed as part of the job
31
+ steps:
32
+ # Runs a single command using the runners shell
33
+ - name: Run a one-line script
34
+ run: echo Hello from job1
35
job2:
36
# The type of runner that the job will run on
37
runs-on: ubuntu-latest
- needs: [job1]
38
+ needs: [job1, job1a]
39
# Steps represent a sequence of tasks that will be executed as part of the job
40
steps:
41
0 commit comments