File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ defaults:
1414
1515jobs :
1616 prepare :
17- name : Prepare
1817 runs-on : ubuntu-24.04-arm
1918 outputs :
2019 mergedSha : ${{ steps.get-merge-commit.outputs.mergedSha }}
@@ -35,14 +34,14 @@ jobs:
3534 run : |
3635 echo "systems=$(jq -c <ci/supportedSystems.json)" >> "$GITHUB_OUTPUT"
3736
38- outpaths :
39- name : Outpaths
37+ eval :
4038 runs-on : ubuntu-24.04-arm
4139 needs : [prepare]
4240 strategy :
4341 fail-fast : false
4442 matrix :
4543 system : ${{ fromJSON(needs.prepare.outputs.systems) }}
44+ name : ${{ matrix.system }}
4645 steps :
4746 - name : Enable swap
4847 run : |
@@ -147,9 +146,8 @@ jobs:
147146 path : diff/*
148147
149148 compare :
150- name : Comparison
151149 runs-on : ubuntu-24.04-arm
152- needs : [prepare, outpaths ]
150+ needs : [prepare, eval ]
153151 if : needs.prepare.outputs.targetSha
154152 permissions :
155153 issues : write # needed to create *new* labels
@@ -248,7 +246,7 @@ jobs:
248246 # No dependency on "compare", so that it can start at the same time.
249247 # We only wait for the "comparison" artifact to be available, which makes the start-to-finish time
250248 # for the eval workflow considerably faster.
251- needs : [prepare, outpaths ]
249+ needs : [prepare, eval ]
252250 if : needs.prepare.outputs.targetSha
253251 uses : ./.github/workflows/reviewers.yml
254252 secrets :
Original file line number Diff line number Diff line change 33# access to the GitHub API. This means that it should not evaluate user input in
44# a way that allows code injection.
55
6- name : " Label PR "
6+ name : Labels
77
88on :
99 schedule :
@@ -33,8 +33,7 @@ defaults:
3333 shell : bash
3434
3535jobs :
36- labels :
37- name : label-pr
36+ update :
3837 runs-on : ubuntu-24.04-arm
3938 if : github.event_name != 'schedule' || github.repository_owner == 'NixOS'
4039 steps :
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ defaults:
2626
2727jobs :
2828 request :
29- name : Request
3029 runs-on : ubuntu-24.04-arm
3130 steps :
3231 - name : Check out the PR at the base commit
You can’t perform that action at this time.
0 commit comments