Skip to content

Commit d5346e7

Browse files
authored
fix link check (#5590)
PR Doc #5443 broke the link checker because it includes a link to this private repo: paritytech/devops#3502 This PR adds the `prdoc` folder to the excluded paths of the link checker to ensure that historical PR Docs do not break the pipeline. I think this makes sense over whitelisting the github link because we probably expect that in a long enough time period, links from old PR docs will start to break, but I don't think we intend to update those old PR docs, or start whitelisting lots of urls.
1 parent 1cff666 commit d5346e7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.config/lychee.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ accept = [
1818
"429",
1919
]
2020

21-
exclude_path = ["./target"]
21+
exclude_path = [
22+
"./prdoc",
23+
"./target",
24+
]
2225

2326
exclude = [
2427
# Place holders (no need to fix these):

0 commit comments

Comments
 (0)