Skip to content

Commit 301a432

Browse files
justin808claude
andauthored
Ignore Slack URL in markdown link checks (#1936)
## Summary - Added `reactrails.slack.com` to the ignored URLs in markdown link check configuration - Fixes CI failures caused by Slack's 503 responses to automated link checkers ## Details The Slack workspace URL (`https://reactrails.slack.com`) consistently returns 503 errors when checked by automated tools, causing the markdown link check CI job to fail. This URL is still valid for users who have access to the Slack workspace, but Slack's servers reject requests from link checking bots. This change adds the URL to the `ignorePatterns` in `.github/markdown-link-check-config.json` to prevent these false positives from blocking CI. ## Test plan - ✅ Verified the JSON configuration is valid - ✅ All linting and formatting checks pass - CI should now pass the markdown link check 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- Reviewable:start --> - - - This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/shakacode/react_on_rails/1936) <!-- Reviewable:end --> Co-authored-by: Claude <noreply@anthropic.com>
1 parent 0b00514 commit 301a432

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/markdown-link-check-config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
},
2424
{
2525
"pattern": "^https://github\\.com/shakacode/react-webpack-rails-tutorial/blob/master/client/webpack\\.client\\.base\\.config\\.js"
26+
},
27+
{
28+
"pattern": "^https://reactrails\\.slack\\.com"
2629
}
2730
],
2831
"replacementPatterns": [

0 commit comments

Comments
 (0)