From 6059c96c60c308a145f7bde44ea28f04ebcaa917 Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Sat, 2 Dec 2023 11:17:02 -0500 Subject: [PATCH] Add job1 as a dependency for job3 --- .github/workflows/02-basic-multiple-jobs-needs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/02-basic-multiple-jobs-needs.yml b/.github/workflows/02-basic-multiple-jobs-needs.yml index 25e3102..2a199b1 100644 --- a/.github/workflows/02-basic-multiple-jobs-needs.yml +++ b/.github/workflows/02-basic-multiple-jobs-needs.yml @@ -36,7 +36,7 @@ jobs: job3: # The type of runner that the job will run on runs-on: ubuntu-latest - needs: [job2] + needs: [job2, job1] # Steps represent a sequence of tasks that will be executed as part of the job steps: