Skip to content

Commit f2ea296

Browse files
committedMar 7, 2025·
🔧 (main.yaml): update job names for clarity and consistency
The job names in the GitHub Actions workflow are updated to be more descriptive and consistent. This change improves readability and understanding of the workflow steps, making it easier for developers to follow the process. The previous names were more abstract and less intuitive, which could lead to confusion.
1 parent 888137c commit f2ea296

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎.github/workflows/main.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ defaults:
2323
jobs:
2424
# Setup & Configuration
2525
Setup:
26-
name: "Invocation & Binding "
26+
name: "Setup & Configuration "
2727
runs-on: ubuntu-latest
2828
outputs:
2929
GitVersion_BranchName: ${{ steps.gitversion.outputs.GitVersion_BranchName }}
@@ -146,7 +146,7 @@ jobs:
146146
147147
# Setup Validator
148148
SetupSummeryStage:
149-
name: "Chronicle"
149+
name: "Build Run Data"
150150
runs-on: ubuntu-latest
151151
needs: Setup
152152
steps:
@@ -175,7 +175,7 @@ jobs:
175175
176176
# Spellcheck
177177
Spellcheck:
178-
name: "Hex Inspection"
178+
name: "Spellcheck Site"
179179
runs-on: ubuntu-latest
180180
if: ${{ success() }}
181181
needs: [Setup]
@@ -200,7 +200,7 @@ jobs:
200200

201201
# Build Docs
202202
BuildSite:
203-
name: "Conjuring"
203+
name: "Build Site"
204204
runs-on: ubuntu-latest
205205
if: ${{ success() }}
206206
needs: [Setup]
@@ -267,7 +267,7 @@ jobs:
267267

268268
# Build Api
269269
BuildApi:
270-
name: "Conduit"
270+
name: "Build Api"
271271
runs-on: ubuntu-latest
272272
if: ${{ false }}
273273
needs: [Setup]
@@ -296,7 +296,7 @@ jobs:
296296

297297
# Offload Images
298298
OffloadImages:
299-
name: "Cloudomancy & Transmutation"
299+
name: "Cleanup and Ofload to Blob Storage"
300300
runs-on: ubuntu-latest
301301
if: ${{ success() }}
302302
needs: [BuildSite, Setup]
@@ -379,7 +379,7 @@ jobs:
379379

380380
# Release to Docs
381381
Publsh:
382-
name: "Manifestation"
382+
name: "Publish Site"
383383
runs-on: ubuntu-latest
384384
needs: [Setup, BuildSite, Spellcheck, OffloadImages]
385385
if: ${{ success() }}

0 commit comments

Comments
 (0)
Please sign in to comment.