feat(readme): compact community contributions widget with per-user search links#43293
Merged
Merged
Conversation
…h search links Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
Update community contributions widget to compact paragraph format
feat(readme): compact community contributions widget with per-user search links
Jul 4, 2026
Copilot created this pull request from a session on behalf of
pelikhan
July 4, 2026 04:00
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s “🌍 Community Contributions” section to a compact, link-based format and updates the daily attribution workflow to generate that new format automatically, improving readability and diff stability while preserving discoverability via per-user issue searches.
Changes:
- Regenerates
README.mdcommunity contributions as one[@user (N)](search-url)link per line instead of a verbose per-issue bullet list inside a<details>block. - Updates
.github/workflows/daily-community-attribution.mdto emit the new link format using$GITHUB_REPOSITORYfor portable repo URLs, and updates agent instructions accordingly. - Updates the compiled workflow output in
.github/workflows/daily-community-attribution.lock.ymlto match the new generator behavior.
Show a summary per file
| File | Description |
|---|---|
| README.md | Replaces the prior <details> + per-issue bullets with compact per-author search links. |
| .github/workflows/daily-community-attribution.md | Changes the pre-step generator and agent prompt guidance to produce the new link-based section. |
| .github/workflows/daily-community-attribution.lock.yml | Regenerated compiled workflow content consistent with the updated markdown workflow. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 3/3 changed files
- Comments generated: 1
- Review effort level: Low
Comment on lines
+275
to
278
| jq -r --arg base "$SEARCH_BASE" ' | ||
| .[] | | ||
| (.author) as $author | | ||
| (.issues | map( | ||
| "#\(.number)" + | ||
| if .tier == 0 then " _(direct issue)_" else "" end | ||
| ) | join(", ")) as $issues | | ||
| "- @\($author): \($issues)" | ||
| "[@\(.author) (\(.count))](\($base + .author))" | ||
| ' "$DATA_DIR/attribution_by_author.json" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces the verbose
<details>-wrapped bullet list (every issue number per user) with a compact paragraph of[@alias (N)](url)links — one per source line for clean diffs.Changes
README.md— community section regenerated in new formatdaily-community-attribution.mdjqnow emits[@alias (count)](search-url)using$GITHUB_REPOSITORYfor portability; drops the<details>wrapperconciseandverbosevariants) updated to matchFormat diff
Each link targets a pre-filtered closed-issues search (
is:closed label:community author:X), making individual contribution history one click away.