Fix README license badge link#19638
Conversation
WalkthroughThe pull request updates the license badge/link in the README.md file. The license reference URL was changed from pointing to a master branch in the tailwindcss repository to the main branch in the tailwindlabs/tailwindcss repository. This is a documentation-only change with no impact on code functionality or public API declarations. 🚥 Pre-merge checks | ✅ 2✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Warning Tools execution failed with the following error: Failed to run tools: 13 INTERNAL: Received RST_STREAM with code 2 (Internal server error) 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.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@README.md`:
- Line 18: Update the GitHub organization in the README links: replace
occurrences of "https://github.com/tailwindcss/tailwindcss/..." with
"https://github.com/tailwindlabs/tailwindcss/..." for the anchor href on line
with the badge (<a href="https://github.com/tailwindcss/tailwindcss/releases">)
and the other two README links referenced at lines 32 and 36 so all GitHub URLs
consistently use the tailwindlabs organization.
| @@ -16,7 +16,7 @@ | |||
| <a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/actions/workflow/status/tailwindlabs/tailwindcss/ci.yml?branch=next" alt="Build Status"></a> | |||
| <a href="https://www.npmjs.com/package/tailwindcss"><img src="https://img.shields.io/npm/dt/tailwindcss.svg" alt="Total Downloads"></a> | |||
| <a href="https://github.com/tailwindcss/tailwindcss/releases"><img src="https://img.shields.io/npm/v/tailwindcss.svg" alt="Latest Release"></a> | |||
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
# Read the README.md file to see the repository references around the mentioned lines
cat -n README.md | sed -n '15,40p'Repository: tailwindlabs/tailwindcss
Length of output: 295
🌐 Web query:
Tailwind CSS official GitHub repository organization
💡 Result:
Tailwind CSS’s official GitHub organization is Tailwind Labs: tailwindlabs. [1]
Main framework repo: tailwindlabs/tailwindcss. [2]
🏁 Script executed:
# Find and read README.md
fd -name "README.md" -type f -exec cat -n {} \; | sed -n '15,40p'Repository: tailwindlabs/tailwindcss
Length of output: 295
🏁 Script executed:
# Alternative: look for the file directly
if [ -f "README.md" ]; then
head -40 README.md | tail -25 | cat -n
fiRepository: tailwindlabs/tailwindcss
Length of output: 295
Update repository organization references from tailwindcss to tailwindlabs.
Lines 18, 32, and 36 use https://github.com/tailwindcss/tailwindcss/... but the official Tailwind CSS organization is tailwindlabs. These should be corrected to https://github.com/tailwindlabs/tailwindcss/... to match the official repository and maintain consistency with the fix applied to line 19.
🤖 Prompt for AI Agents
In `@README.md` at line 18, Update the GitHub organization in the README links:
replace occurrences of "https://github.com/tailwindcss/tailwindcss/..." with
"https://github.com/tailwindlabs/tailwindcss/..." for the anchor href on line
with the badge (<a href="https://github.com/tailwindcss/tailwindcss/releases">)
and the other two README links referenced at lines 32 and 36 so all GitHub URLs
consistently use the tailwindlabs organization.
|
Thanks! |
Glad to help the project! |
Summary
The README license badge linked to a non-existent
masterbranch (and the wrong org).This updates the link to the current location: tailwindlabs/tailwindcss/blob/main/LICENSE.
Test plan
README.mdand clicked the license badge/link to confirm it resolves to the LICENSE file on themainbranch.