Skip to content

Commit

Permalink
fix logger parts
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed Jun 27, 2024
1 parent f09fba1 commit 2fe80db
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,10 @@ jobs:
maxfilesizeparse=100000
[csv]
separator=,
parts=urlname,parentname,result
parts=urlname,parentname,warning,result
[MarkdownCheck]
filename_re=.*\.md$
" > .linkcheckerrc
echo "urlname,parentname,result" > linkchecker-out-all.csv
for f in ${{ steps.file_list.outputs.files }}; do
if [ "${f##*.}" != "md" ]; then
continue
Expand All @@ -88,7 +87,7 @@ jobs:
fi
done
linkchecker -f .linkcheckerrc -F csv/linkchecker-out.csv -t 20 --check-extern --no-follow-url ".*" --timeout=30 $f || true
cat linkchecker-out.csv | sed '1n; /urlname,parentname,result/d' | grep -v ',200.*$' >> linkchecker-out-all.csv
tail -n +2 linkchecker-out.csv | grep -v ',200.*$' >> linkchecker-out-all.csv
done
- name: Upload artifact
Expand Down

0 comments on commit 2fe80db

Please sign in to comment.