Skip to content

Commit 9a45247

Browse files
committed
Add 8 character limit to sandbox name
1 parent 4fd20f8 commit 9a45247

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy-sandbox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
required: true
1111
type: "string"
1212
sandbox_name:
13-
description: "Sandbox name [a-z0-9]{1,9}"
13+
description: "Sandbox name [a-z0-9]{1,8}"
1414
required: true
1515
type: "string"
1616

@@ -27,8 +27,8 @@ jobs:
2727
steps:
2828
- name: Validate inputs
2929
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)."
30+
if ! [[ "$SANDBOX_NAME" =~ ^[a-z0-9]{1,8}$ ]]; then
31+
echo "Sandbox name must match [a-z0-9]{1,8} (lowercase letters and digits only, 1-8 chars)."
3232
exit 1
3333
fi
3434
env:

0 commit comments

Comments
 (0)