We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13563fe commit e0aaafeCopy full SHA for e0aaafe
.github/workflows/check-broken-links-schedule.yaml
@@ -55,17 +55,8 @@ jobs:
55
format: markdown
56
output: ./lychee-external-report.md
57
58
- - name: Check report content
59
- id: check-report
60
- run: |
61
- if [ -f ./lychee-external-report.md ] && [ -s ./lychee-external-report.md ] && grep -q "Broken links found" ./lychee-external-report.md; then
62
- echo "broken_links=true" >> $GITHUB_OUTPUT
63
- else
64
- echo "broken_links=false" >> $GITHUB_OUTPUT
65
- fi
66
-
67
- name: Create issue
68
- if: steps.lychee-external.outputs.exit_code != 0 && steps.check-report.outputs.broken_links == 'true'
+ if: steps.lychee-external.outputs.exit_code != '0'
69
uses: peter-evans/create-issue-from-file@v5
70
with:
71
title: 🔍 External Broken Links Report
0 commit comments