Skip to content

Commit

Permalink
adding the dependent job
Browse files Browse the repository at this point in the history
  • Loading branch information
OmSantoshHarsule authored Jul 2, 2024
1 parent 1e8e032 commit 6af95c5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: job-dependent

on: [push]

jobs:
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: STEP A
run: echo "world"
job1:
runs-on: ubuntu-latest
steps:
- name: step b
run: echo "hello"



0 comments on commit 6af95c5

Please sign in to comment.