Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Update md link checker (#7709)
Browse files Browse the repository at this point in the history
* CI: ignore %20 for md link checker

* CI: update to a new action release that fixes %20 issue
  • Loading branch information
TriplEight committed Dec 11, 2020
1 parent 2a7a985 commit d663ca5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/allowed-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
// not listed here, CI will fail.

module.exports = [
'gaurav-nelson/github-action-markdown-link-check@e3c371c731b2f494f856dc5de7f61cea4d519907', // gaurav-nelson/github-action-markdown-link-check@v1.0.8
'gaurav-nelson/github-action-markdown-link-check@7481451f70251762f149d69596e3e276ebf2b236', // gaurav-nelson/github-action-markdown-link-check@v1.0.8
]
2 changes: 1 addition & 1 deletion .github/workflows/md-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@e3c371c731b2f494f856dc5de7f61cea4d519907
- uses: gaurav-nelson/github-action-markdown-link-check@7481451f70251762f149d69596e3e276ebf2b236
with:
use-quiet-mode: 'yes'
config-file: '.github/workflows/mlc_config.json'
8 changes: 1 addition & 7 deletions .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
{
"ignorePatterns": [
{
"pattern": "^https://crates.io"
}
],
"replacementPatterns": [
{
"pattern": "%20",
"replacement": " "
"pattern": "^https://crates.io",
}
]
}

0 comments on commit d663ca5

Please sign in to comment.