-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding link checker and fixing some links
- Loading branch information
Showing
6 changed files
with
39 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: linkcheck | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 1 * * *' # daily at 01:30 UTC | ||
|
||
jobs: | ||
external-link-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Cloning repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Lychee Link Checker | ||
uses: lycheeverse/lychee-action@v1 | ||
with: | ||
fail: true | ||
args: -c lychee.toml -n 20* index.html about/ conference/ contact/ |
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,14 @@ | ||
# Maximum number of allowed redirects. | ||
max_redirects = 20 | ||
|
||
# Proceed for server connections considered insecure (invalid TLS). | ||
insecure = true | ||
|
||
# Remap URI matching pattern to different URI. | ||
#remap = ['%7B%7BVersion%7D%7D 1.19.0'] | ||
|
||
# Exclude URLs and mail addresses from checking (supports regex). | ||
exclude = ['dlr\.de', 'linkedin\.com', 'twitter\.com'] | ||
|
||
|
||
|
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