[community] Update community contributions in README#44859
Conversation
Update the Community Contributions section with the latest contributor counts and resolved issues. This includes: - Updated contributor counts reflecting recently resolved community issues - Tier 3 attribution processing results - Removed entries for contributors with no current open/closed issues - Updated attribution counts for existing contributors Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
@copilot make sure to paginate and query all time history of community issues |
|
✅ PR Code Quality Reviewer completed the code quality review. |
|
✅ Test Quality Sentinel completed test quality analysis. No test files were added or modified in this PR. Test Quality Sentinel analysis not applicable for documentation-only changes. |
|
🧠 Matt Pocock Skills Reviewer has completed the skills-based review. ✅ |
|
✅ Design Decision Gate 🏗️ completed the design decision gate check. No ADR enforcement needed: PR #44859 does not have the 'implementation' label and has 0 new lines of code in business logic directories (threshold: 100). |
There was a problem hiding this comment.
Pull request overview
Updates the README’s automated community contribution attribution.
Changes:
- Updates contributor issue counts.
- Adds two contributors and removes one.
- Cleans up trailing blank lines.
Show a summary per file
| File | Description |
|---|---|
| README.md | Refreshes the Community Contributions list. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 5
- Review effort level: Medium
| [@anthonymastreanvae (10)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Aanthonymastreanvae) | ||
| [@aoxiangtianyu-go (1)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Aaoxiangtianyu-go) |
| [@maikelvdh (1)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Amaikelvdh) | ||
| [@maikelvdh (2)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Amaikelvdh) | ||
| [@mason-tim (5)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Amason-tim) | ||
| [@matiloti (1)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Amatiloti) |
There was a problem hiding this comment.
Skills-Based Review 🧠
Applied /grill-with-docs — this is a routine automated community attribution update with no actionable issues.
The changes are accurate, well-scoped, and consistent with the existing README format:
- ✅ Contributor counts updated correctly
- ✅ New contributor
@holwerdaand@matilotiadded in alphabetical order - ✅
@apenabremoved cleanly (0 issues) - ✅ Trailing blank lines cleaned up (lines 252–253)
🧠 Reviewed using Matt Pocock's skills by Matt Pocock Skills Reviewer · 13.3 AIC · ⌖ 4.31 AIC · ⊞ 6.5K
Comment /matt to run again
There was a problem hiding this comment.
Automated community contributor count updates look correct. Alphabetical ordering maintained, new contributors inserted in the right positions, and removed contributor (@apenab) appropriately dropped. LGTM.
🧵 Reviewed using Impeccable skills by Impeccable Skills Reviewer · 12.1 AIC · ⌖ 5.14 AIC · ⊞ 4.8K
There was a problem hiding this comment.
Documentation-only change updating contributor counts and removing trailing whitespace. No code changes; nothing to block.
🔎 Code quality review by PR Code Quality Reviewer · 11.6 AIC · ⌖ 4.27 AIC · ⊞ 5.4K
Comment /review to run again
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Implemented in 69a5c3e. The daily community attribution workflow now fetches community issues via paginated GraphQL ( |
|
@copilot please run the Unresolved review feedback to address:
Run: https://github.com/github/gh-aw/actions/runs/29144948053
|
Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com>
Addressed in Updated README community attribution entries to resolve the listed review feedback for I can’t re-run CI from this agent context; a maintainer-triggered rerun is still needed on the updated head. |
|
🎉 This pull request is included in a new release. Release: |
Summary
Updates the README community contributor counts to reflect the full issue history and fixes the daily attribution workflow to paginate all community-labeled issues.
Changes
.github/workflows/daily-community-attribution.mdgh api *to the bash tool allowlist.gh api graphql --paginateto retrieve all issues with thecommunitylabel (bothOPENandCLOSEDstates) across the repository's full history. Previously, the workflow was limited by non-paginated queries and missed older issues. Results are written to/tmp/gh-aw/agent/community-data/community_issues.json.README.md@anthonymastreanvae: 9 → 10@Evangelink: 1 → 3@github-antoine-brechon: 2 → 3@maikelvdh: 1 → 2@mnkiefer: 1 → 4@sg650: 11 → 12@yskopets: 44 → 51@holwerda (2),@matiloti (1).@apenab/@aoxiangtianyu-go.## Share Feedbacksection.Root Cause
The daily attribution workflow was fetching community issues without pagination, causing it to miss issues beyond the first page. The fix switches to a GraphQL paginated query so all historical issues are counted.
Impact