Yiyiyimu commented on pull request #2684:
URL: https://github.com/apache/apisix/pull/2684#issuecomment-728759140
Hi @juzhiyuan
The configuration I'm using is
```
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/workflows/checklink_config.json'
```
and checklink_config.json
```
{
"ignorePatterns": [
{
"pattern": ["^/img/"]
},
{
"pattern": ["^http://localhost"]
},
{
"pattern": ["^https://github.com"]
}
]
}
```
So it's like we need to manually filter out some example links, and some
links that have strict anti-spider strategies.
Maybe that would be of help 😃
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]