Broken Link Check #706
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" | |
repository_dispatch: # run manually | |
types: [check-link] | |
permissions: {} | |
name: Broken Link Check | |
jobs: | |
check: | |
name: Broken Link Check | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
issues: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Read URLs From Sitemap | |
id: extract | |
run: echo "urls=$(curl -sL https://metal3.io/sitemap.xml | grep -o "<loc>[^<]*" | sed -e 's/<[^>]*>//g' | tr '\n' ' ')" >> $GITHUB_OUTPUT | |
- name: Link Checker Metal3.io Web Page | |
id: lycheemetal3io | |
uses: lycheeverse/lychee-action@f81112d0d2814ded911bd23e3beaa9dda9093915 # v2.1.0 | |
with: | |
args: --user-agent "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0" ${{ steps.extract.outputs.urls }} | |
output: /tmp/lychee_output.md | |
fail: false | |
- name: Create Issue From File Metal3.io | |
if: steps.lycheemetal3io.outputs.exit_code != 0 | |
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1 | |
with: | |
title: Link Checker Report | |
content-filepath: /tmp/lychee_output.md | |
labels: | | |
kind/bug |