Skip to content

Add Contributors and fix broken markdown in README_pt_br#8375

Open
BraianS wants to merge 1 commit into
usebruno:mainfrom
BraianS:docs
Open

Add Contributors and fix broken markdown in README_pt_br#8375
BraianS wants to merge 1 commit into
usebruno:mainfrom
BraianS:docs

Conversation

@BraianS

@BraianS BraianS commented Jun 26, 2026

Copy link
Copy Markdown

Description

Remove broken markdown under ## Apoiadores, and add ## Contribuidores.

Contribution Checklist:

  • I've used AI significantly to create this pull request
  • The pull request only addresses one issue or adds one feature.
  • The pull request does not introduce any breaking changes
  • I have added screenshots or gifs to help explain the change if applicable.
  • I have read the contribution guidelines.
  • Create an issue and link to the pull request.

Note: Keeping the PR small and focused helps make it easier to review and merge. If you have multiple changes you want to make, please consider submitting them as separate pull requests.

Publishing to New Package Managers

Please see here for more information.

Summary by CodeRabbit

  • Documentation
    • Updated the Portuguese (BR) README section to replace sponsor listings with a collaborators area.
    • Added a centered contributor graph link and contributor badge image.

Remove broken markdown under '## Apoiadores', and add '## Contribuidores'
@coderabbitai

coderabbitai Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Walkthrough

The Portuguese README replaces the sponsors section with a collaborators section that links to the repository contributor graph and shows the contrib.rocks contributor image.

Changes

Portuguese README update

Layer / File(s) Summary
Replace supporters section
docs/readme/readme_pt_br.md
The “Apoiadores” block with Gold/Silver/Bronze sponsor subsections is removed and replaced with a centered “Colaboradores” block linking to contributor data and displaying the contrib.rocks image.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

A sponsor list took a gentle bow,
Contributors step into the now.
One link, one image, neat and bright,
The README sings in softer light.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the docs change: adding contributors and fixing broken README markdown in README_pt_br.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
docs/readme/readme_pt_br.md (1)

96-96: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Add alt text to the contrib.rocks image for accessibility.

The <img> tag is missing an alt attribute. While this image is decorative, explicit empty alt (alt="") or descriptive text improves accessibility compliance.

🛠️ Proposed fix
-        <img src="https://contrib.rocks/image?repo=usebruno/bruno" />
+        <img src="https://contrib.rocks/image?repo=usebruno/bruno" alt="Contribuidores do Bruno" />
🤖 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 `@docs/readme/readme_pt_br.md` at line 96, The README image tag in the
contrib.rocks section is missing accessibility text; update the `<img>` element
to include an `alt` attribute, using either an empty value for decorative
content or concise descriptive text. Locate the image markup in the README
snippet and adjust the existing image tag accordingly so it complies with
accessibility requirements.
🤖 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 `@docs/readme/readme_pt_br.md`:
- Around line 92-98: The README has duplicate contributor sections: the newly
added `### Colaboradores` block duplicates the existing contributor block
already present later in the file. Remove the earlier inserted section and keep
the existing bottom placement that matches the other localized READMEs, or if
the intent is a terminology change, rename the existing `### Contribuidores`
heading instead of adding a second block. Also delete the `### Apoiadores`
section only if it is no longer needed, using the existing contributor section
as the single source of truth.

---

Nitpick comments:
In `@docs/readme/readme_pt_br.md`:
- Line 96: The README image tag in the contrib.rocks section is missing
accessibility text; update the `<img>` element to include an `alt` attribute,
using either an empty value for decorative content or concise descriptive text.
Locate the image markup in the README snippet and adjust the existing image tag
accordingly so it complies with accessibility requirements.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 468adda0-8cb9-4d3b-8e42-39a87c5e045d

📥 Commits

Reviewing files that changed from the base of the PR and between 1ceea07 and 31fb7ec.

📒 Files selected for processing (1)
  • docs/readme/readme_pt_br.md

Comment on lines +92 to +98
### Colaboradores

#### Apoiadores Gold

<img src="../../assets/images/sponsors/samagata.png" width="150"/>

#### Apoiadores Silver

<img src="../../assets/images/sponsors/commit-company.png" width="70"/>

#### Apoiadores Bronze

<a href="https://zuplo.link/bruno">
<img src="../../assets/images/sponsors/zuplo.png" width="120"/>
</a>
<div align="center">
<a href="https://github.com/usebruno/bruno/graphs/contributors">
<img src="https://contrib.rocks/image?repo=usebruno/bruno" />
</a>
</div>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🔴 Critical | ⚡ Quick win

Duplicate contributor sections - file now contains two identical contributor blocks.

The new ### Colaboradores section (lines 92-98) duplicates the existing ### Contribuidores section at lines 152-158, which already has the same markup. Based on cross-file context, other language READMEs (French, English) place this section near the bottom before the license. The existing placement at 152-158 follows this pattern; the new addition at 92-98 does not.

Remove the newly added 92-98 block and simply delete the ### Apoiadores section without replacement, since ### Contribuidores already exists in the correct location. If you intend to rename "Contribuidores" to "Colaboradores" for consistency, replace the heading at line 152 instead.

🧰 Tools
🪛 markdownlint-cli2 (0.22.1)

[warning] 96-96: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 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 `@docs/readme/readme_pt_br.md` around lines 92 - 98, The README has duplicate
contributor sections: the newly added `### Colaboradores` block duplicates the
existing contributor block already present later in the file. Remove the earlier
inserted section and keep the existing bottom placement that matches the other
localized READMEs, or if the intent is a terminology change, rename the existing
`### Contribuidores` heading instead of adding a second block. Also delete the
`### Apoiadores` section only if it is no longer needed, using the existing
contributor section as the single source of truth.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant