Skip to content

Commit

Permalink
Fix syntax error in properties URL validation condition (missing ])
Browse files Browse the repository at this point in the history
  • Loading branch information
SableRaf committed Jan 11, 2025
1 parent a6152ba commit 214ed8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issue_to_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
id: validateUrl
run: |
properties_url="${{ fromJson(steps.parseIssue.outputs.payload)['Properties File URL'] }}"
if [ -z "$properties_url"; then
if [ -z "$properties_url" ]; then
echo "Properties URL is empty. Please provide a valid URL."
exit 1
fi
Expand Down

0 comments on commit 214ed8f

Please sign in to comment.