Skip to content

Commit 9334cdb

Browse files
committed
chore(ci): remove emojis from workflows to comply with repo standards
- Keep messaging clear and consistent
1 parent d3d40b0 commit 9334cdb

File tree

7 files changed

+19
-988
lines changed

7 files changed

+19
-988
lines changed

.github/workflows/helm.yaml.disabled

Lines changed: 0 additions & 102 deletions
This file was deleted.

.github/workflows/prepare-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151
# in the unified-release.yaml workflow. This manual step is no longer needed.
5252
- name: Chart Update Notice
5353
run: |
54-
echo "ℹ️ Chart version updates are now handled automatically by release-please"
55-
echo "📋 The unified-release.yaml workflow will update:"
54+
echo "Chart version updates are now handled automatically by release-please"
55+
echo "The unified-release.yaml workflow will update:"
5656
echo " - Chart appVersion to match application version"
5757
echo " - Chart version to match application version (without 'v' prefix)"
5858
echo " - Image tag in values.yaml"
59-
echo "No manual chart updates required"
59+
echo "No manual chart updates required"
6060
- name: Generate updated helm reference
6161
# Needs to run after chart update, before docs update
6262
run: |
@@ -101,13 +101,13 @@ jobs:
101101
base: main
102102
title: "chore(release): Updates for ${{ env.GITOPS_VERSION }}"
103103
body: |
104-
## ⚠️ Breaking changes
104+
## Breaking changes
105105
Describe any breaking changes here, or delete this block
106106
107-
## ✍️ Action required
107+
## Action required
108108
Describe any user facing actions here, or delete this block.
109109
110-
## 💸 Features and improvements
110+
## Features and improvements
111111
Describe any user facing changes here, or delete this block.
112112
113113
Examples of user facing changes:

.github/workflows/release-please.yaml

Lines changed: 0 additions & 162 deletions
This file was deleted.

.github/workflows/unified-release.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,24 @@ jobs:
5252
5353
# Validate that chart appVersion matches application version
5454
if [[ "$CHART_APP_VERSION" != "$APP_VERSION" ]]; then
55-
echo "Error: Chart appVersion ($CHART_APP_VERSION) does not match application version ($APP_VERSION)"
55+
echo "Error: Chart appVersion ($CHART_APP_VERSION) does not match application version ($APP_VERSION)"
5656
exit 1
5757
fi
5858
5959
# Validate that image tag matches application version
6060
if [[ "$IMAGE_TAG" != "$APP_VERSION" ]]; then
61-
echo "Error: Image tag ($IMAGE_TAG) does not match application version ($APP_VERSION)"
61+
echo "Error: Image tag ($IMAGE_TAG) does not match application version ($APP_VERSION)"
6262
exit 1
6363
fi
6464
6565
# Validate that chart version follows expected pattern (remove 'v' prefix from app version)
6666
EXPECTED_CHART_VERSION=$(echo "$APP_VERSION" | sed 's/^v//')
6767
if [[ "$CHART_VERSION" != "$EXPECTED_CHART_VERSION" ]]; then
68-
echo "Error: Chart version ($CHART_VERSION) does not match expected version ($EXPECTED_CHART_VERSION)"
68+
echo "Error: Chart version ($CHART_VERSION) does not match expected version ($EXPECTED_CHART_VERSION)"
6969
exit 1
7070
fi
7171
72-
echo "All versions are synchronized correctly"
72+
echo "All versions are synchronized correctly"
7373
7474
publish-npm-package:
7575
needs: [release-please, validate-versions]
@@ -154,7 +154,7 @@ jobs:
154154
CHART_FILE="helm-release/weave-gitops-${CHART_VERSION}.tgz"
155155
156156
if [[ ! -f "$CHART_FILE" ]]; then
157-
echo "Error: Chart file $CHART_FILE not found"
157+
echo "Error: Chart file $CHART_FILE not found"
158158
ls -la helm-release/
159159
exit 1
160160
fi
@@ -221,18 +221,18 @@ jobs:
221221
steps:
222222
- name: Create release summary
223223
run: |
224-
echo "# 🚀 Release Summary" >> $GITHUB_STEP_SUMMARY
224+
echo "# Release Summary" >> $GITHUB_STEP_SUMMARY
225225
echo "" >> $GITHUB_STEP_SUMMARY
226226
echo "**Version:** ${{ needs.release-please.outputs.version }}" >> $GITHUB_STEP_SUMMARY
227227
echo "**Tag:** ${{ needs.release-please.outputs.tag_name }}" >> $GITHUB_STEP_SUMMARY
228228
echo "" >> $GITHUB_STEP_SUMMARY
229-
echo "## 📦 Components Released" >> $GITHUB_STEP_SUMMARY
230-
echo "- Application binaries (GoReleaser)" >> $GITHUB_STEP_SUMMARY
231-
echo "- Container images (ghcr.io/weaveworks/wego-app)" >> $GITHUB_STEP_SUMMARY
232-
echo "- Helm chart (ghcr.io/weaveworks/charts)" >> $GITHUB_STEP_SUMMARY
233-
echo "- NPM package (@weaveworks scope)" >> $GITHUB_STEP_SUMMARY
229+
echo "## Components Released" >> $GITHUB_STEP_SUMMARY
230+
echo "- Application binaries (GoReleaser)" >> $GITHUB_STEP_SUMMARY
231+
echo "- Container images (ghcr.io/weaveworks/wego-app)" >> $GITHUB_STEP_SUMMARY
232+
echo "- Helm chart (ghcr.io/weaveworks/charts)" >> $GITHUB_STEP_SUMMARY
233+
echo "- NPM package (@weaveworks scope)" >> $GITHUB_STEP_SUMMARY
234234
echo "" >> $GITHUB_STEP_SUMMARY
235-
echo "## 🔄 Version Synchronization" >> $GITHUB_STEP_SUMMARY
235+
echo "## Version Synchronization" >> $GITHUB_STEP_SUMMARY
236236
echo "All components have been released with synchronized versions:" >> $GITHUB_STEP_SUMMARY
237237
echo "- Application: ${{ needs.release-please.outputs.version }}" >> $GITHUB_STEP_SUMMARY
238238
echo "- Chart AppVersion: ${{ needs.release-please.outputs.version }}" >> $GITHUB_STEP_SUMMARY

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ localhost.pem
2323

2424
# Ignore generated credentials from google-github-actions/auth
2525
gha-creds-*.json
26-
26+
tasks/*.md
2727
# Ignore VIM's swap files
2828
*.swp
2929

0 commit comments

Comments
 (0)