quantecon/AI-Powered Link Checker
Check and validate web links in HTML files with AI-powered suggestions for improvements
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Oct 1, 2025
- License
- MIT
Pinned Snippet
uses: quantecon/action-link-checker@890d35e42e8801b522e6de2bb60a4ce13c643e6b # v1.0.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| html-path | Path to directory containing HTML files to scan | no | ./_build/html |
| mode | Scanning mode: "full" for all files, "changed" for PR-changed files only | no | full |
| silent-codes | HTTP status codes to silently report without failing (comma-separated) | no | 403,503 |
| fail-on-broken | Whether to fail the workflow if broken links are found | no | true |
| ai-suggestions | Whether to enable AI-powered link improvement suggestions | no | true |
| create-issue | Whether to create a GitHub issue when broken links are found | no | false |
| issue-title | Title for the GitHub issue when broken links are found | no | Broken Links Found in Documentation |
| create-artifact | Whether to create a workflow artifact with the link report | no | false |
| artifact-name | Name for the workflow artifact containing the link report | no | link-check-report |
| notify | GitHub username(s) to assign to the created issue (comma-separated for multiple users) | no | "" |
| timeout | Timeout in seconds for each link check (increased default for better robustness) | no | 45 |
| max-redirects | Maximum number of redirects to follow | no | 5 |
Outputs
| name | description |
|---|---|
| broken-links-found | Whether broken links were found (true/false) |
| broken-link-count | Number of broken links found |
| redirect-count | Number of redirects found |
| link-details | Details of broken links and suggestions |
| ai-suggestions | AI-powered suggestions for link improvements |
| issue-url | URL of the created GitHub issue (if create-issue is enabled) |
| artifact-path | Path to the created artifact file (if create-artifact is enabled) |