Skip to content

feat(readme): compact community contributions widget with per-user search links#43293

Merged
pelikhan merged 1 commit into
mainfrom
copilot/update-contributor-rendering-widget
Jul 4, 2026
Merged

feat(readme): compact community contributions widget with per-user search links#43293
pelikhan merged 1 commit into
mainfrom
copilot/update-contributor-rendering-widget

Conversation

Copilot AI commented Jul 4, 2026

Copy link
Copy Markdown
Contributor

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 format
  • daily-community-attribution.md
    • Pre-step jq now emits [@alias (count)](search-url) using $GITHUB_REPOSITORY for portability; drops the <details> wrapper
    • Agent prompt instructions (both concise and verbose variants) updated to match

Format diff

-<details>
-<summary>Thank you to the community members whose issue reports were resolved...</summary>
-
-- @alias: #25345 _(direct issue)_, #27473 _(direct issue)_, #34302 _(direct issue)_
-- @alias2: #34302 _(direct issue)_
-</details>
+<sup>Community members whose issues were resolved — updated automatically.</sup>
+
+[@alias (3)](https://github.com/github/gh-aw/issues?q=is%3Aissue+is%3Aclosed+label%3Acommunity+author%3Aalias)
+[@alias2 (1)](...)

Each link targets a pre-filtered closed-issues search (is:closed label:community author:X), making individual contribution history one click away.

…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 AI requested a review from pelikhan July 4, 2026 04:00
@pelikhan pelikhan marked this pull request as ready for review July 4, 2026 04:01
Copilot AI review requested due to automatic review settings July 4, 2026 04:01
@pelikhan pelikhan merged commit 0ace5ba into main Jul 4, 2026
@pelikhan pelikhan deleted the copilot/update-contributor-rendering-widget branch July 4, 2026 04:01

Copilot AI 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.

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.md community 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.md to emit the new link format using $GITHUB_REPOSITORY for portable repo URLs, and updates agent instructions accordingly.
  • Updates the compiled workflow output in .github/workflows/daily-community-attribution.lock.yml to 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants