You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enhance GitHub Actions workflow by initializing FAILED variable for better error handling in link checks
* Refine GitHub Actions workflow to ensure link checks report errors correctly by adding failure handling for absolute and relative link checks
* try again
* and another
* Add comments to PR
* bump versions
* Refine GitHub Actions workflow to improve link check error handling by preventing immediate exit on failure and adding a reporting step after posting comments.
* Update GitHub Actions workflow to standardise quotes and enhance summary comment generation for link checks
* Fix date display on PR output
echo "There are broken absolute links in the documentation. Please check the job logs for details." >> $GITHUB_STEP_SUMMARY
94
+
cat << 'EOL' > comment_absolute.txt
95
+
❌ **Absolute links check failed**
96
+
There are broken absolute links in the documentation. [See workflow logs for details](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
echo "There are broken relative links in the documentation. Please check the job logs for details." >> $GITHUB_STEP_SUMMARY
110
+
cat << 'EOL' > comment_relative.txt
111
+
❌ **Relative links check failed**
112
+
There are broken relative links in the documentation. [See workflow logs for details](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
0 commit comments