Skip to content

Commit

Permalink
fix link check (#5590)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shawntabrizi authored Sep 5, 2024
1 parent 1cff666 commit d5346e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .config/lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ accept = [
"429",
]

exclude_path = ["./target"]
exclude_path = [
"./prdoc",
"./target",
]

exclude = [
# Place holders (no need to fix these):
Expand Down

0 comments on commit d5346e7

Please sign in to comment.