📒 docs: Enhance sponsorship section in README#4402
Conversation
Updated sponsorship information and added new sponsors.
WalkthroughThis PR updates ChangesSponsorship and Supporters
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
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.
Code Review
This pull request updates the .github/README.md file to add a GitHub Sponsors badge and a new "Supporters" table for GitHub Sponsorships, while removing some older donation entries. The review feedback highlights several issues in these additions: an invalid HTML href attribute containing markdown syntax in the sponsors badge, a typo ("Sponsorshiop") in the table header, and mismatched links/avatars for the @NdoleStudio and @bsdrop supporter entries.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
There was a problem hiding this comment.
Pull request overview
Updates the project’s README sponsorship/supporter information by adding a GitHub Sponsors badge and expanding the Supporters section with a sponsorship table.
Changes:
- Added a new “sponsors” shield/badge in the header.
- Updated the Supporters section to include GitHub Sponsors alongside Buy Me a Coffee.
- Introduced a new sponsorship table and adjusted the donation/supporter listings.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Actionable comments posted: 3
🧹 Nitpick comments (1)
.github/README.md (1)
807-809: ⚡ Quick winAdd alt text to supporter avatars for accessibility.
These images use empty alt text, which triggers MD045 and reduces screen-reader usability.
Proposed fix
-|  | [`@CodeRabbit`](https://www.coderabbit.ai/) | 🔥 Fiber Guardian | -|  | [`@NdoleStudio`](https://github.com/dembygenesis) | ☕ Fiber Supporter | -|  | [`@petercool`](https://github.com/petercool) | ☕ Fiber Supporter | +|  | [`@CodeRabbit`](https://www.coderabbit.ai/) | 🔥 Fiber Guardian | +|  | [`@NdoleStudio`](https://github.com/dembygenesis) | ☕ Fiber Supporter | +|  | [`@petercool`](https://github.com/petercool) | ☕ Fiber Supporter |🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In @.github/README.md around lines 807 - 809, The avatar image markdown in the supporter table uses empty alt text () which fails accessibility checks (MD045); update each image tag in the table rows (the lines containing "") to include meaningful alt text such as "Avatar of `@CodeRabbit`", "Avatar of `@NdoleStudio`", "Avatar of `@petercool`" (or similar username-based descriptions) so screen readers can convey who the image represents; keep the rest of the markdown unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/README.md:
- Line 805: Fix the typo in the markdown table header by replacing the header
cell text "Sponsorshiop" with the correct spelling "Sponsorship" (or "Sponsor
Tier" if preferred); locate the table row containing the header cell
"Sponsorshiop" and update that cell value accordingly.
- Line 27: Replace the malformed href value in the README anchor (currently set
to "[https://gofiber.io/discord](https://github.com/sponsors/gofiber)") with a
plain URL string; update the href attribute to the intended sponsor URL (e.g.,
"https://github.com/sponsors/gofiber") so the anchor navigates correctly and
remove the embedded Markdown-style brackets and parentheses.
- Line 803: Update the supporter CTA text to correct the platform branding:
change "Github Sponsorship" to "GitHub Sponsorship" in the README string that
currently reads "⭐ [**Github
Sponsorship**](https://github.com/sponsors/gofiber)" so the link label uses the
correct capitalized "GitHub".
---
Nitpick comments:
In @.github/README.md:
- Around line 807-809: The avatar image markdown in the supporter table uses
empty alt text () which fails accessibility checks (MD045); update each
image tag in the table rows (the lines containing
"") to include meaningful alt text
such as "Avatar of `@CodeRabbit`", "Avatar of `@NdoleStudio`", "Avatar of
`@petercool`" (or similar username-based descriptions) so screen readers can
convey who the image represents; keep the rest of the markdown unchanged.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Nitpick comments (2)
.github/README.md (2)
814-817: 💤 Low valueConsider using consistent Markdown syntax for all avatar images.
Line 816 uses HTML
<img>syntax while the other rows use Markdown. Standardizing improves maintainability.♻️ Proposed refactor
-| <img src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="thomasvvugt" style="width: 25px; height: 25px;"> | [`@thomasvvugt`](https://github.com/thomasvvugt) | ☕ x 5 | +|  | [`@thomasvvugt`](https://github.com/thomasvvugt) | ☕ x 5 |🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In @.github/README.md around lines 814 - 817, The table mixes Markdown image syntax and an HTML <img> tag for avatars (row with "thomasvvugt"), causing inconsistency; replace the HTML tag with the same Markdown image format used elsewhere (e.g., change <img src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="thomasvvugt" ...> to ) so the row for `@thomasvvugt` uses consistent Markdown image syntax like the other rows.
807-810: 💤 Low valueConsider using consistent Markdown syntax for all avatar images.
The first three rows use Markdown image syntax while the fourth uses HTML. Standardizing on Markdown improves maintainability.
♻️ Proposed refactor
After fixing the identity mismatch in line 810:
-| <img src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="ekaputra07" width="25" height="25"> | [`@ekaputra07`](https://github.com/ekaputra07) | ☕ Fiber Supporter | +|  | [`@ekaputra07`](https://github.com/ekaputra07) | ☕ Fiber Supporter |🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In @.github/README.md around lines 807 - 810, Replace the inconsistent HTML avatar tag with the same Markdown image syntax used in the other rows: change the <img src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="thomasvvugt" width="25" height="25"> cell to use  and keep the existing link and label [`@bsdrop`](https://github.com/ekaputra07) and role "☕ Fiber Supporter" so all four rows use consistent Markdown image syntax.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/README.md:
- Around line 807-809: The markdown avatar image tags are missing alt text
(e.g., the three occurrences of
); update each image tag used
in the contributors table to include descriptive alt text (for example
"CodeRabbit avatar", "NdoleStudio avatar", "petercool avatar" or similar) so
screen readers can identify the images, ensuring you modify the exact image
markdown strings shown in the table rows.
- Line 810: The sponsor row has mismatched identity: the image alt is
"thomasvvugt" while the visible handle is
"[`@bsdrop`](https://github.com/ekaputra07)"; verify the intended sponsor and make
the markdown consistent by updating the image alt, the link text, and the link
href to the correct GitHub username. Locate the table row containing the image
tag (<img ... alt="thomasvvugt"...>) and the link token
"[`@bsdrop`](https://github.com/ekaputra07)" and change them so the avatar URL,
alt text, and the bracketed handle/href all match the verified sponsor (e.g., if
sponsor is ekaputra07, set alt="ekaputra07" and show
[`@ekaputra07`](https://github.com/ekaputra07); if sponsor is bsdrop/thomasvvugt,
update href and alt accordingly).
---
Nitpick comments:
In @.github/README.md:
- Around line 814-817: The table mixes Markdown image syntax and an HTML <img>
tag for avatars (row with "thomasvvugt"), causing inconsistency; replace the
HTML tag with the same Markdown image format used elsewhere (e.g., change <img
src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="thomasvvugt"
...> to ) so the row
for `@thomasvvugt` uses consistent Markdown image syntax like the other rows.
- Around line 807-810: Replace the inconsistent HTML avatar tag with the same
Markdown image syntax used in the other rows: change the <img
src="https://avatars.githubusercontent.com/u/56607882?s=25" alt="thomasvvugt"
width="25" height="25"> cell to use
 and keep the existing
link and label [`@bsdrop`](https://github.com/ekaputra07) and role "☕ Fiber
Supporter" so all four rows use consistent Markdown image syntax.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
Updated sponsorship information and added new sponsors.