This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
Lychee #298
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
# yamllint disable rule:comments | |
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Lychee" | |
'on': | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/lychee.yaml" | |
schedule: | |
- cron: "0 0 * * *" # Every day at midnight | |
env: | |
WORKFLOW_ISSUE_TITLE: "Link Checker Dashboard π" | |
jobs: | |
lychee: | |
name: Lychee | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 | |
id: app-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
token: "${{ steps.app-token.outputs.token }}" | |
- name: Setup Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Setup Workflow Tools | |
shell: bash | |
run: brew install lychee | |
- name: Scan For Broken Links | |
shell: bash | |
env: | |
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}" | |
run: | | |
lychee --verbose --no-progress \ | |
--format markdown \ | |
--output results.md \ | |
--exclude-all-private \ | |
--exclude-mail \ | |
./**/*.md || true | |
- name: Print Output | |
run: cat results.md | |
- name: Find Link Checker Issue | |
id: find-issue | |
shell: bash | |
env: | |
GH_TOKEN: "${{ steps.app-token.outputs.token }}" | |
run: | | |
issue_number=$( \ | |
gh issue list \ | |
--search "in:title ${{ env.WORKFLOW_ISSUE_TITLE }}" \ | |
--state open \ | |
--json number \ | |
| jq --raw-output '.[0].number' \ | |
) | |
echo "issue-number=${issue_number}" >> "$GITHUB_OUTPUT" | |
echo "${issue_number}" | |
- name: Create or Update Issue | |
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1 | |
with: | |
token: "${{ steps.app-token.outputs.token }}" | |
title: "${{ env.WORKFLOW_ISSUE_TITLE }}" | |
issue-number: "${{ steps.find-issue.outputs.issue-number || '' }}" | |
content-filepath: results.md | |
# yamllint enable rule:comments |