Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: disable check of dead playground link #296

Merged
merged 7 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-verbose-mode: 'yes'
use-quiet-mode: 'yes'
config-file: '.github/workflows/mlc_config.json'
folder-path: 'docs/'
12 changes: 9 additions & 3 deletions .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@
],
"httpHeaders": [
{
"urls": [
"https://crates.io"
],
"urls": ["https://crates.io"],
"headers": {
"Accept": "text/html"
}
}
],
"ignorePatterns": [
{
"pattern": "^https?://twitter.com"
},
{
"pattern": "^https?://x.com"
}
]
}
1 change: 1 addition & 0 deletions docs/monthly-update/2022/05.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ a curated list of awesome projects related to ink!.

## Playground 🕹

<!-- markdown-link-check-disable-next-line -->
The ink! playground has been published at https://ink-playground.substrate.io!

It's handy for a couple of things. For example:
Expand Down