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 74be226 commit b50f449Copy full SHA for b50f449
.github/workflows/issue_to_pr.yml
@@ -43,6 +43,14 @@ jobs:
43
|| contains(github.event.issue.labels.*.name, 'tool') && 'tool'
44
|| contains(github.event.issue.labels.*.name, 'library') && 'library'}}"
45
46
+ - name: Validate properties URL
47
+ id: validateUrl
48
+ run: |
49
+ if ! curl --output /dev/null --silent --head --fail "${{ fromJson(steps.parseIssue.outputs.payload).properties_url }}"; then
50
+ echo "Url not valid: ${{ fromJson(steps.parseIssue.outputs.payload).properties_url }}"
51
+ exit 1
52
+ fi
53
+
54
- name: Read and validate properties txt file
55
id: parseProps
56
run: >
0 commit comments