Skip to content

Commit

Permalink
feat: Config
Browse files Browse the repository at this point in the history
  • Loading branch information
dango2887 committed Aug 25, 2023
1 parent 7c0867b commit c1e9250
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/grouped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

group1_job2:
runs-on: ubuntu-latest
needs: [group1_job1, job1] # Group 1 Job 2 依赖于 Group 1 Job 1
needs: [group1_job1, job1,job2] # Group 1 Job 2 依赖于 Group 1 Job 1
steps:
- name: Step 1 in Group 1 Job 2
run: echo "Step 1 in Group 1 Job 2"
Expand All @@ -47,6 +47,7 @@ jobs:

group2_job1:
runs-on: ubuntu-latest
needs: job0
steps:
- name: Step 1 in Group 2 Job 1
run: echo "Step 1 in Group 2 Job 1"
Expand Down

0 comments on commit c1e9250

Please sign in to comment.