Exclude OLCF Summit URL from link checker#1279
Conversation
The OLCF site returns 503 to automated requests and sends a 1-hour rate limit backoff, causing the Lychee link check to fail.
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
Claude Code ReviewHead SHA: 7687635 Files changed: 1
Summary
FindingsNo issues found. Improvement Opportunities
This is a minimal, well-reasoned CI maintenance change with no correctness concerns. |
| "https://cpe\\.ext\\.hpe\\.com", # HPE Cray docs have broken SSL cert | ||
| "https://sc22\\.supercomputing\\.org", # Returns 415 to automated requests | ||
| "https://strawberryperl\\.com", # Frequently times out | ||
| "https://www\\.olcf\\.ornl\\.gov/summit", # Returns 503 to automated requests |
There was a problem hiding this comment.
Suggestion: Anchor the regular expression for the excluded URL with ^ to prevent it from matching substrings within other URLs. [possible issue, importance: 4]
| "https://www\\.olcf\\.ornl\\.gov/summit", # Returns 503 to automated requests | |
| "^https://www\\.olcf\\.ornl\\.gov/summit", # Returns 503 to automated requests |
Claude Code ReviewHead SHA: 7687635 Files changed: 1
Summary
FindingsNo issues found. Improvement Opportunities (optional)
Verdict: LGTM. The change is minimal, correctly motivated, and consistent with the existing exclusion list conventions. |
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Lychee link-checker configuration to avoid CI failures caused by the OLCF Summit webpage returning 503/rate-limiting automated requests.
Changes:
- Added
https://www.olcf.ornl.gov/summitto Lychee’sexcludeURL patterns to prevent link-check retries/backoff from failing docs CI.
|
Caution Review failedThe pull request is closed. ℹ️ Recent review infoConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe pull request modifies the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
https://www.olcf.ornl.gov/summitfrom Lychee link checksThe OLCF site returns 503 to automated requests and sends a 1-hour rate limit backoff, causing the docs CI to fail.
Test plan