Skip to content

Commit

Permalink
updated link checker
Browse files Browse the repository at this point in the history
  • Loading branch information
gulcingulletutan committed Jun 3, 2024
1 parent 6098f02 commit a2a2194
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/link_checker_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"projectBaseUrl":"${https://github.com/ESMValGroup/ESMValTool_Tutorial}",
"ignorePatterns": [
{
"pattern": "^http://example.net"
}
],
"replacementPatterns": [
{
"pattern": "^.attachments",
"replacement": "file://some/conventional/folder/.attachments"
},
{
"pattern": "^/",
"replacement": "{{BASEURL}}/"
},
{
"pattern": "%20",
"replacement": "-",
"global": true
}
],
"httpHeaders": [
{
"urls": ["https://example.com"],
"headers": {
"Authorization": "Basic Zm9vOmJhcg==",
"Foo": "Bar"
}
}
],
"timeout": "20s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [200, 206]
}

0 comments on commit a2a2194

Please sign in to comment.