Add Linux Foundation Health Score to README#24983
Add Linux Foundation Health Score to README#24983jonathimer wants to merge 1 commit intoTryGhost:mainfrom
Conversation
Congrats! We have onboarded Ghost to LFX Insights, the Linux Foundation's platform for monitoring the world's most critical open-source projects. https://insights.linuxfoundation.org/project/tryghost-ghost
WalkthroughAdds a new health score badge block to README.md under the Contributors section. The change inserts a link that wraps an image badge sourced from insights.linuxfoundation.org. No existing content is modified or removed, and no code or configuration files are affected. Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. 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 |
There was a problem hiding this comment.
This PR is being reviewed by Cursor Bugbot
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
| <a href="https://github.com/TryGhost/Ghost/contributors/"> | ||
| <img src="https://img.shields.io/github/contributors/TryGhost/Ghost.svg" alt="Contributors" /> | ||
| </a> | ||
| <a href="[https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost)"> |
There was a problem hiding this comment.
Bug: Markdown Link Syntax in href Causes Navigation Failure
The new <a> tag in README.md includes Markdown link syntax [https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost) in its href attribute. This prevents the link from working and navigating to the intended Linux Foundation Insights page.
| <a href="[https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost)"> | ||
| <img src="https://insights.linuxfoundation.org/api/badge/health-score?project=tryghost-ghost" alt="Health score" /> | ||
| </a> |
There was a problem hiding this comment.
Fix the malformed badge link.
The href attribute still contains a markdown-formatted link, so the browser tries to follow [https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost) and the badge is effectively broken.
Apply this diff to repair the link:
- <a href="[https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost)">
+ <a href="https://insights.linuxfoundation.org/project/tryghost-ghost">📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <a href="[https://github.com/TryGhost/Ghost/contributors/](https://insights.linuxfoundation.org/project/tryghost-ghost)"> | |
| <img src="https://insights.linuxfoundation.org/api/badge/health-score?project=tryghost-ghost" alt="Health score" /> | |
| </a> | |
| <a href="https://insights.linuxfoundation.org/project/tryghost-ghost"> | |
| <img src="https://insights.linuxfoundation.org/api/badge/health-score?project=tryghost-ghost" alt="Health score" /> | |
| </a> |
🤖 Prompt for AI Agents
In README.md around lines 31 to 33 the badge anchor's href contains a
markdown-style link text instead of the actual URL, breaking the badge link;
replace the href value so it points directly to the intended URL
(https://insights.linuxfoundation.org/project/tryghost-ghost) and ensure the <a>
tag wraps the <img> correctly with no markdown punctuation.
Congrats! We have onboarded Ghost to LFX Insights, the Linux Foundation's platform for monitoring the world's most critical open-source projects.
https://insights.linuxfoundation.org/project/tryghost-ghost