Skip to content

Commit 0a04207

Browse files
webknjazhugovk
andcommitted
Replace emojis in workflow and job names with text
This change reverts using a πŸ“ emoji as a UI-facing component within GitHub Actions CI/CD and related web pages. It has been requested in the following code review thread: #97533 (comment) Co-Authored-By: Adam Turner <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 18fd975 commit 0a04207

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

β€Ž.github/workflows/build.yml

+6
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ jobs:
9292
run: |
9393
echo "run-docs=true" >> "${GITHUB_OUTPUT}"
9494
95+
check-docs:
96+
name: Docs
97+
needs: check_source
98+
if: fromJSON(needs.check_source.outputs.run-docs)
99+
uses: ./.github/workflows/reusable-docs.yml
100+
95101
check_generated_files:
96102
name: 'Check if generated files are up to date'
97103
runs-on: ubuntu-latest

β€Ž.github/workflows/reusable-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: πŸ“
1+
name: Docs
22

33
on:
44
workflow_call:

0 commit comments

Comments
Β (0)