-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #302 from threefoldtech/development-split
Link Checker
- Loading branch information
Showing
4 changed files
with
104 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Weekly Link Check | ||
on: | ||
schedule: | ||
- cron: '0 6 * * 5' | ||
|
||
jobs: | ||
checkwww: | ||
name: Check for Broken Links on www | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for Broken Links on www | ||
id: link-report www | ||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest | ||
with: | ||
args: 'https://www.manual.grid.tf -e 404 500 501 502 503 504 -w all' | ||
|
||
checkwww2: | ||
name: Check for Broken Links on www2 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for Broken Links | ||
id: link-report www2 | ||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest | ||
with: | ||
args: 'https://www2.manual.grid.tf -e 404 500 501 502 503 504 -w all' | ||
|
||
checkwww3: | ||
name: Check for Broken Links on www3 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for Broken Links | ||
id: link-report www3 | ||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest | ||
with: | ||
args: 'https://www3.manual.grid.tf -e 404 500 501 502 503 504 -w all' |