We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72a3e57 commit e470ea8Copy full SHA for e470ea8
.github/workflows/gh-pages.yml
@@ -1,6 +1,7 @@
1
name: github pages
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches:
7
- next-major-release
@@ -26,3 +27,20 @@ jobs:
26
27
with:
28
github_token: ${{ secrets.GITHUB_TOKEN }}
29
publish_dir: ./public
30
+
31
+ broken_link_checker_job:
32
+ runs-on: ubuntu-latest
33
+ name: Check for broken links
34
+ steps:
35
+ - name: Check for broken links
36
+ id: link-report
37
+ uses: celinekurpershoek/link-checker@v1.0.1
38
+ with:
39
+ # Required:
40
+ url: 'https://opm.github.io/ResInsight-UserDocumentation/'
41
+ # optional:
42
+ honorRobotExclusions: false
43
+ ignorePatterns: ''
44
+ recursiveLinks: false # Check all URLs on all reachable pages (could take a while)
45
+ - name: Get the result
46
+ run: echo "${{steps.link-report.outputs.result}}"
0 commit comments