We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd20f8 commit 9a45247Copy full SHA for 9a45247
.github/workflows/deploy-sandbox.yml
@@ -10,7 +10,7 @@ on:
10
required: true
11
type: "string"
12
sandbox_name:
13
- description: "Sandbox name [a-z0-9]{1,9}"
+ description: "Sandbox name [a-z0-9]{1,8}"
14
15
16
@@ -27,8 +27,8 @@ jobs:
27
steps:
28
- name: Validate inputs
29
run: |
30
- if ! [[ "$SANDBOX_NAME" =~ ^[a-z0-9]{1,9}$ ]]; then
31
- echo "Sandbox name must match [a-z0-9]{1,9} (lowercase letters and digits only, 1-9 chars)."
+ if ! [[ "$SANDBOX_NAME" =~ ^[a-z0-9]{1,8}$ ]]; then
+ echo "Sandbox name must match [a-z0-9]{1,8} (lowercase letters and digits only, 1-8 chars)."
32
exit 1
33
fi
34
env:
0 commit comments