Skip to content

Commit 0c01fe4

Browse files
author
Alexander Rogalskiy
committed
Updates on files
1 parent a89cd3c commit 0c01fe4

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "localhost"
5+
},
6+
{
7+
"pattern": "file://"
8+
},
9+
{
10+
"pattern": "slack.airbyte.io"
11+
},
12+
{
13+
"reason": "Return 429 frequently",
14+
"pattern": "https://github.com/airbytehq/airbyte"
15+
},
16+
{
17+
"reason": "Private page without public access",
18+
"pattern": "https://github.com/airbytehq/airbyte/settings"
19+
},
20+
{
21+
"reason": "Page too large and very slow",
22+
"pattern": "https://docs.github.com/en/rest/reference/repos"
23+
},
24+
{
25+
"reason": "Links with bash variable",
26+
"pattern": "\\$"
27+
},
28+
{
29+
"reason": "Links in HBS templates",
30+
"pattern": "\\{"
31+
},
32+
{
33+
"reason": "Test only scaffold connector",
34+
"pattern": "sources/scaffold-"
35+
},
36+
{
37+
"reason": "Test only scaffold connector",
38+
"pattern": "sources/python-"
39+
},
40+
{
41+
"reason": "Test only scaffold connector",
42+
"pattern": "sources/javascript-"
43+
},
44+
{
45+
"reason": "Test only scaffold connector",
46+
"pattern": "destinations/scaffold-"
47+
}
48+
],
49+
"retryOn429": false,
50+
"aliveStatusCodes": [200, 206, 403, 429, 503]
51+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Perform link check on all markdown files
2+
name: Doc Link Checker (Full)
3+
4+
on:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
markdown-link-check:
11+
timeout-minutes: 50
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@master
15+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
16+
with:
17+
use-quiet-mode: 'no'
18+
use-verbose-mode: 'yes'
19+
check-modified-files-only: 'no'
20+
config-file: .github/workflows/doc-link-check.json
21+
base-branch: ${{ github.base_ref }}

0 commit comments

Comments
 (0)