Skip to content

Remove broken link and small improvements #122

Remove broken link and small improvements

Remove broken link and small improvements #122

Workflow file for this run

name: Link Checker for Pull requests
on: pull_request
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- id: changed_files
uses: jitterbit/get-changed-files@v1
- name: Link Checker
uses: lycheeverse/[email protected]
id: lychee
env:
GITHUB_TOKEN: ${{secrets.TOKEN_GITHUB}}
with:
args: ${{ steps.changed_files.outputs.all }}
- name: Count broken links
run: |
broken_max=10
broken_count=$(printf "%d" $(grep "🚫 Errors" lychee/out.md | cut -d'|' -f3))
if [ "$broken_count" -gt "$broken_max" ]; then
echo "Number of broken links (${broken_count}) exceeds maximum allowed number (${broken_max})."
cat lychee/out.md
exit 1
else
echo "Number of broken links (${broken_count}) less than or equal to maximum allowed number (${broken_max})."
exit 0
fi