We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8178aa8 commit f1a750bCopy full SHA for f1a750b
.github/workflows/validate-links.yml
@@ -40,7 +40,8 @@ jobs:
40
PYTHONPATH: ${{ github.workspace }}
41
run: |
42
make validate-github
43
- echo "has_broken_links=$(python -c \"import json; data=json.load(open('validation_results.json')); print('true' if data['newly_broken'] else 'false')\")" >> "$GITHUB_OUTPUT"
+ has_broken_links=$(python -c "import json; data=json.load(open('validation_results.json')); print('true' if data['newly_broken'] else 'false')")
44
+ echo "has_broken_links=${has_broken_links}" >> "$GITHUB_OUTPUT"
45
46
- name: Upload validation results
47
if: always()
0 commit comments