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 84ec88c commit 862760dCopy full SHA for 862760d
.github/workflows/issue_to_pr.yml
@@ -57,7 +57,8 @@ jobs:
57
- name: Validate properties URL
58
id: validateUrl
59
run: |
60
- properties_url="${{ fromJson(steps.parseIssue.outputs.payload).properties_url }}"
+ payload="${{ steps.parseIssue.outputs.payload }}"
61
+ properties_url=$(echo "$payload" | jq -r '."Properties File URL"')
62
if [ -z "$properties_url" ]; then
63
echo "Properties URL is empty. Please provide a valid URL."
64
exit 1
0 commit comments