-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
docs: update badges to use shields.io #88
Conversation
WalkthroughThe changes involve updating badge URLs in the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- README.md (2 hunks)
Additional context used
LanguageTool
## Badge To add a badge simple replace owner and repository ``...README.md
[uncategorized] ~226-~226: A comma might be missing here.
Context: ...]' ```(AI_EN_LECTOR_MISSING_PUNCTUATION_COMMA)
[uncategorized] ~226-~226: A period might be missing here.
Context: ...To add a badge simple replace owner and repository ```markdown <!-- Replace , <REP...(AI_EN_LECTOR_MISSING_PUNCTUATION_PERIOD)
Additional comments not posted (4)
README.md (4)
3-3
: LGTM! Unit Test Badge URL updated correctly.The Unit Test Badge URL has been successfully updated to use shields.io.
4-4
: LGTM! Auto Label Badge URL updated correctly.The Auto Label Badge URL has been successfully updated to use shields.io.
5-5
: LGTM! Codecov Badge URL updated correctly.The Codecov Badge URL has been successfully updated to use shields.io.
6-6
: LGTM! Usage Badge added correctly.The new Usage Badge has been successfully added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- README.md (2 hunks)
Additional context used
LanguageTool
## Badge To add a badge simple replace , an...README.md
[uncategorized] ~226-~226: A comma might be missing here.
Context: ...]' ```(AI_EN_LECTOR_MISSING_PUNCTUATION_COMMA)
Additional comments not posted (1)
README.md (1)
3-6
: Approved: Improved badge consistency and appearance.The updates to use shields.io for badges improve the visual consistency and appearance. Ensure the new URLs are correct and functional.
Verify the URLs:
Verification successful
Verified: Badge URLs are functional and correctly configured.
The badge URLs in the README.md file have been verified and are all returning a status code of 200, indicating they are functional and correctly configured.
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the new badge URLs are correct and functional. # Test: Check the HTTP status code of the badge URLs. Expect: 200 OK. urls=( "https://img.shields.io/github/actions/workflow/status/Renato66/auto-label/checks.yml?logo=github&label=Build" "https://img.shields.io/github/actions/workflow/status/Renato66/auto-label/auto-label.yml?logo=github&label=Auto%20Label" "https://img.shields.io/codecov/c/github/renato66/auto-label?logo=codecov" "https://img.shields.io/badge/used_by-125-blue?logo=githubactions&logoColor=FFF&logoSize=small" ) for url in "${urls[@]}"; do status=$(curl -o /dev/null -s -w "%{http_code}\n" "$url") if [ "$status" -ne 200 ]; then echo "URL $url returned status code $status" exit 1 fi done echo "All URLs are functional."Length of output: 1295
No description provided.