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 862760d commit c1ae27dCopy full SHA for c1ae27d
.github/workflows/issue_to_pr.yml
@@ -70,10 +70,11 @@ jobs:
70
71
- name: Read and validate properties txt file
72
id: parseProps
73
- run: >
+ run: |
74
+ properties_url=$(echo "${{ steps.parseIssue.outputs.payload }}" | jq -r '."Properties File URL"')
75
python -u scripts/parse_and_validate_properties_txt.py \
76
${{ steps.determineCategory.outputs.category }} \
- "${{ fromJson(steps.parseIssue.outputs.payload).properties_url }}"
77
+ "$properties_url"
78
79
- name: add comment to issue
80
id: issueComment
0 commit comments