Skip to content

Commit c1ae27d

Browse files
committed
Fix the other mention of properties_url
1 parent 862760d commit c1ae27d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/issue_to_pr.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,11 @@ jobs:
7070
7171
- name: Read and validate properties txt file
7272
id: parseProps
73-
run: >
73+
run: |
74+
properties_url=$(echo "${{ steps.parseIssue.outputs.payload }}" | jq -r '."Properties File URL"')
7475
python -u scripts/parse_and_validate_properties_txt.py \
7576
${{ steps.determineCategory.outputs.category }} \
76-
"${{ fromJson(steps.parseIssue.outputs.payload).properties_url }}"
77+
"$properties_url"
7778
7879
- name: add comment to issue
7980
id: issueComment

0 commit comments

Comments
 (0)