Skip to content

Commit e827c6e

Browse files
committed
ci: more name refactoring
1 parent 921e1df commit e827c6e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
test-devcontainer-file: ${{ matrix.flavor == 'cpp' && '.devcontainer/cpp-test/devcontainer.json' || '' }}
4242

4343
dependency-review:
44-
name: 🔍 Dependencies
44+
name: 🔍 Dependency Review
4545
needs: build-push-test
4646
uses: ./.github/workflows/wc-dependency-review.yml
4747
permissions:

.github/workflows/wc-build-push-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ permissions: {}
7171

7272
jobs:
7373
build-push:
74-
name: 🛠️ Build → Push
74+
name: 🛠️
7575
uses: ./.github/workflows/wc-build-push.yml
7676
permissions:
7777
actions: read
@@ -92,7 +92,7 @@ jobs:
9292
build-test-runner-labels: ${{ inputs.build-test-runner-labels }}
9393

9494
integration-test:
95-
name: 🧪 Integration Test (${{ matrix.runner }})
95+
name: 🧪
9696
if: ${{ inputs.integration-test-file }}
9797
strategy:
9898
matrix:
@@ -109,7 +109,7 @@ jobs:
109109
runner-labels: ${{ matrix.runner }}
110110

111111
acceptance-test:
112-
name: 🧪 Acceptance Test
112+
name: 🧪
113113
if: ${{ inputs.test-devcontainer-file && inputs.acceptance-test-path }}
114114
needs: build-push
115115
uses: ./.github/workflows/wc-acceptance-test.yml

.github/workflows/wc-build-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ permissions: {}
4949

5050
jobs:
5151
sanitize-image-name:
52-
name: 🧼 Sanitize Image Name
52+
name: 🧼
5353
uses: ./.github/workflows/wc-sanitize-image-name.yml
5454
with:
5555
image-name: ${{ inputs.image-name }}
5656
registry: ${{ inputs.registry }}
5757
runner-labels: ${{ inputs.runner-labels }}
5858

5959
build-push:
60-
name: 🛠️ Build → Push (${ { matrix.runner }})
60+
name: 🛠️ (${{ matrix.runner }})
6161
strategy:
6262
matrix:
6363
runner: ${{ (startsWith(inputs.build-test-runner-labels, '[') && endsWith(inputs.build-test-runner-labels, ']')) && fromJson(inputs.build-test-runner-labels) || inputs.build-test-runner-labels }}
@@ -136,7 +136,7 @@ jobs:
136136
retention-days: 1
137137

138138
merge-image:
139-
name: 🔗 Merge Image & Publish Digest
139+
name: 🔗 Merge Image
140140
# Support either a plain single label (e.g. ubuntu-latest) OR a JSON array of labels.
141141
# If the input starts & ends with brackets we attempt JSON parsing; otherwise we pass the raw string.
142142
runs-on: ${{ (startsWith(inputs.runner-labels, '[') && endsWith(inputs.runner-labels, ']')) && fromJson(inputs.runner-labels) || inputs.runner-labels }}

.github/workflows/wc-dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions: {}
1414

1515
jobs:
1616
dependency-review:
17-
name: 🔍 Dependency Review
17+
name: 🔍
1818
runs-on: ${{ (startsWith(inputs.runner-labels, '[') && endsWith(inputs.runner-labels, ']')) && fromJson(inputs.runner-labels) || inputs.runner-labels }}
1919
permissions:
2020
contents: read

0 commit comments

Comments
 (0)