We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb703c commit 76f96c9Copy full SHA for 76f96c9
.github/workflows/test_templated_agent.yaml
@@ -107,7 +107,7 @@ jobs:
107
AGENT_NAME=$(basename \"$TEMPLATE_PATH\")
108
DEPLOYMENT_TARGET=\"${{ matrix.deployment_target }}\"
109
# Use shorter prefix and truncate if needed to stay under 26 chars
110
- TRUNCATED_NAME=$(echo \"$AGENT_NAME\" | cut -c1-21)
+ TRUNCATED_NAME=$(echo \"$AGENT_NAME\" | cut -c1-21 | tr '[:upper:]' '[:lower:]' | tr '_' '-')
111
AGENT_GENERATED_NAME=\"test-$TRUNCATED_NAME\"
112
113
echo \"--- Testing template: $TEMPLATE_PATH with deployment target: $DEPLOYMENT_TARGET ---\"
0 commit comments