Link Checker #204
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
name: Link Checker | |
on: | |
schedule: | |
- cron: "0 13 * * 0" # run every Sunday at 1pm UTC https://crontab.guru/#0_13_*_*_1 | |
workflow_dispatch: # trigger manually | |
inputs: | |
branch: | |
description: "Branch to check" | |
required: true | |
default: main | |
permissions: | |
contents: read | |
# globals | |
env: | |
CHECK_WEBSITE: https://music-encoding.org | |
CHECK_OWNER: music-encoding | |
CHECK_BRANCH: main | |
jobs: | |
website_link_check: | |
name: Check website links | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'music-encoding' }} | |
steps: | |
- uses: technote-space/broken-link-checker-action@7820497a025fb09ff736ee11bb8bb12ca715b4fe # v2.3.1 | |
with: | |
TARGET: ${{ env.CHECK_WEBSITE }} | |
EXCLUDED_KEYWORDS: | | |
twitter.com | |
linkChecker: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'music-encoding' }} | |
permissions: | |
contents: read | |
issues: write | |
steps: | |
- name: Set variables | |
run: | | |
if [[ "${{ github.event.inputs.branch }}" != '' ]] ; then | |
echo "Setting branch: ${{ github.event.inputs.branch }}" | |
echo "CHECK_BRANCH=${{ github.event.inputs.branch }}" >> $GITHUB_ENV | |
fi | |
- name: Checkout main repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ env.CHECK_BRANCH }} | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@7cd0af4c74a61395d455af97419279d86aafaede # v2.0.2 | |
- name: Create Issue From File | |
if: env.lychee_exit_code != 0 | |
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: bug, documentation |