mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
3fbe38343d
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>
25 lines
628 B
YAML
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}}"
|