Skip to content

Commit bb442f1

Browse files
adamanciniclaude
andcommitted
fix: resolve Task YAML syntax error with echo statements
Replace colon-separated step labels with hyphen-separated format to fix Task parser error. Task interprets colons in echo statements as invalid YAML syntax when quoted. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 9faf578 commit bb442f1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

applications/wg-easy/Taskfile.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -718,16 +718,16 @@ tasks:
718718
vars: [BRANCH_NAME]
719719
cmds:
720720
- echo "Starting PR validation cycle for branch {{.NORMALIZED_BRANCH_NAME}}"
721-
- echo "Step 1: Validating charts..."
721+
- echo "Step 1 - Validating charts..."
722722
- task: chart-validate
723-
- echo "Step 2: Building and creating release..."
723+
- echo "Step 2 - Building and creating release..."
724724
- task: channel-create
725725
vars:
726726
RELEASE_CHANNEL: "{{.NORMALIZED_CHANNEL_NAME}}"
727727
- task: release-create
728728
vars:
729729
RELEASE_CHANNEL: "{{.NORMALIZED_CHANNEL_NAME}}"
730-
- echo "Step 3: Testing deployment..."
730+
- echo "Step 3 - Testing deployment..."
731731
- task: customer-create
732732
vars:
733733
CUSTOMER_NAME: "{{.NORMALIZED_BRANCH_NAME}}"
@@ -749,7 +749,6 @@ tasks:
749749
REPLICATED_LICENSE_ID:
750750
sh: task utils:get-customer-license CUSTOMER_NAME={{.NORMALIZED_BRANCH_NAME}}
751751
- task: test
752-
753752
- echo "PR validation cycle completed successfully!"
754753

755754
cleanup-pr-resources:

0 commit comments

Comments
 (0)