Skip to content

Commit 902cdc2

Browse files
committed
Removes emojis from workflow job names
Simplifies workflow job naming for improved clarity and consistency in CI output.
1 parent 1cab82d commit 902cdc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
check-version:
15-
name: "🔍 Check NPM Version"
15+
name: "Check NPM Version"
1616
runs-on: ubuntu-latest
1717
outputs:
1818
should_publish: ${{ steps.check.outputs.should_publish }}
@@ -38,7 +38,7 @@ jobs:
3838
fi
3939
4040
publish:
41-
name: "📦 Publish to NPM"
41+
name: "Publish to NPM"
4242
needs: check-version
4343
if: needs.check-version.outputs.should_publish == 'true'
4444
runs-on: ubuntu-latest
@@ -61,7 +61,7 @@ jobs:
6161
run: npm publish --access public
6262

6363
skip-notice:
64-
name: "⏭️ Skip Publish (Version Exists)"
64+
name: "Skip Publish (Version Exists)"
6565
needs: check-version
6666
if: needs.check-version.outputs.should_publish == 'false'
6767
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)