ResInsight/.github/workflows/check-broken-links.yml
dependabot[bot] 3fbe38343d Bump celinekurpershoek/link-checker from 1.0.1 to 1.0.2
Bumps [celinekurpershoek/link-checker](https://github.com/celinekurpershoek/link-checker) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/celinekurpershoek/link-checker/releases)
- [Commits](https://github.com/celinekurpershoek/link-checker/compare/v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: celinekurpershoek/link-checker
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-14 11:47:31 +02:00

25 lines
628 B
YAML

name: Broken link check
on:
push:
branches:
- gh-pages
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/link-checker@v1.0.2
with:
# Required:
url: 'https://resinsight.org/'
# optional:
honorRobotExclusions: false
ignorePatterns: ''
recursiveLinks: false # Check all URLs on all reachable pages (could take a while)
- name: Get the result
run: echo "${{steps.link-report.outputs.result}}"