Skip to content

Commit 214ed8f

Browse files
committed
Fix syntax error in properties URL validation condition (missing ])
1 parent a6152ba commit 214ed8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/issue_to_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
id: validateUrl
6060
run: |
6161
properties_url="${{ fromJson(steps.parseIssue.outputs.payload)['Properties File URL'] }}"
62-
if [ -z "$properties_url"; then
62+
if [ -z "$properties_url" ]; then
6363
echo "Properties URL is empty. Please provide a valid URL."
6464
exit 1
6565
fi

0 commit comments

Comments
 (0)