Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Broken link check

Broken link check #198

name: Broken link check
on:
schedule:
- cron: '0 0 * * *' # This will run the workflow every day at midnight (UTC)
workflow_dispatch:
jobs:
broken_link_checker_job:
runs-on: ubuntu-latest
name: Check for broken links
steps:
- name: Check for broken links
id: link-report
uses: celinekurpershoek/[email protected]
with:
# Required:
url: "https://docs.platform.planqk.de/"
# optional:
ignorePatterns: "localhost,marketplace.visualstudio.com/items?itemName=42Crunch.vscode-openapi"
recursiveLinks: true # Check all URLs on all reachable pages (could take a while)
- name: Get the result
run: echo "${{steps.link-report.outputs.result}}"