Clarify guidelines for submitting multiple related projects in PRs and enhance rejection criteria for clarity

This commit is contained in:
Wilson Freitas
2026-03-28 10:23:42 -03:00
parent e0ac384cae
commit c20e6f26a3
2 changed files with 19 additions and 5 deletions
+5 -3
View File
@@ -27,9 +27,9 @@ Use the `mcp__github__pull_request_read` tool with method `get_diff` to read the
Reject the PR immediately (close with a polite comment) if any of these apply: Reject the PR immediately (close with a polite comment) if any of these apply:
- **Multiple projects in one PR** — each PR should add exactly one project. - **Multiple unrelated projects** — multiple projects should only be submitted together if they are closely related (same market/exchange, same author, same service, or address a specific domain gap). Check the PR description for clear rationale. If unrelated, ask the contributor to split into separate PRs.
- **Empty PR description** — the contributor must explain what they're adding. - **Empty PR description** — the contributor must explain what they're adding and why (especially if multiple projects).
- **Duplicate** — the project name or URL is already in `README.md` or in a recently closed PR. - **Duplicate entries** — the same project name or URL appears multiple times within the PR or already in `README.md`.
- **Archived or abandoned** — the project has no activity in 12+ months. - **Archived or abandoned** — the project has no activity in 12+ months.
### Step 5: Validate each added entry ### Step 5: Validate each added entry
@@ -154,3 +154,5 @@ When leaving comments, be friendly and grateful for the contribution. Example to
> - Consider adding a `[GitHub](url)` link so we can track activity. > - Consider adding a `[GitHub](url)` link so we can track activity.
> >
> Please see our [contributing guidelines](https://github.com/wilsonfreitas/awesome-quant/blob/main/CONTRIBUTING.md) for the accepted entry formats. > Please see our [contributing guidelines](https://github.com/wilsonfreitas/awesome-quant/blob/main/CONTRIBUTING.md) for the accepted entry formats.
**For multiple-project PRs:** If entries have mixed results (some pass, some need fixes), list all issues together and ask the contributor to fix all at once rather than cherry-picking individual entries. If the relationship between projects isn't clear from the description, ask for clarification of why they should be grouped.
+14 -2
View File
@@ -61,9 +61,21 @@ Add your entry under the correct language heading (`##`) and category subheading
If no existing category fits, suggest a new one in your PR description. If no existing category fits, suggest a new one in your PR description.
## One Project Per PR ## Multiple Related Projects Per PR
Submit one project per pull request. This makes review faster and keeps the git history clean. **Preferred:** One project per pull request for clarity and focused reviews.
**Acceptable:** Multiple closely related projects in a single PR if they share a common theme or data source. Examples:
- Multiple data sources from the same market or exchange (e.g., all NSE/BSE tools for Indian markets)
- Multiple tools from the same author with complementary functionality
- Multiple APIs/SDKs for the same service or data provider
- Related packages addressing a specific domain gap (e.g., UK company identifier validators)
When submitting multiple projects:
- Explain the relationship and rationale in the PR description
- Ensure each entry is placed in the correct section
- Avoid creating duplicate entries within the same README file
- All entries must meet quality and format requirements independently
## Before Submitting ## Before Submitting