Skip to content

Commit

Permalink
Create broken-links-checker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan authored Jul 5, 2024
1 parent 452a946 commit 0ff07a6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/broken-links-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Broken link check
on:
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:
url: "https://docs.kuadrant.io"
honorRobotExclusions: false
recursiveLinks: true
- name: Get the result
run: echo "${{steps.link-report.outputs.result}}"

0 comments on commit 0ff07a6

Please sign in to comment.