Skip to content

Commit c08b86e

Browse files
workflows/eval: use consistent naming with the other 3 PR workflows
The overall idea is to use names short enough to fit into the status checks list without shortening. This change mostly happened in the commits before, here we just follow the same pattern for the remaining workflows.
1 parent 008527d commit c08b86e

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.github/workflows/eval.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ defaults:
1414

1515
jobs:
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:

.github/workflows/labels.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

88
on:
99
schedule:
@@ -33,8 +33,7 @@ defaults:
3333
shell: bash
3434

3535
jobs:
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:

.github/workflows/reviewers.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ defaults:
2626

2727
jobs:
2828
request:
29-
name: Request
3029
runs-on: ubuntu-24.04-arm
3130
steps:
3231
- name: Check out the PR at the base commit

0 commit comments

Comments
 (0)