Conversation
Adds 14 feature ships from the Fixing OSS Pain Points / Tiny Wins tracker covering Jul-Dec 2025: Q1 (9 ships): tab width consistency, default tab size, contributing guidelines visibility, PR reviewer status, email notification headers, WebP image support, file navigation, Actions time threshold, one-click merge conflict resolution. Q2 (5 ships): blocked users view, commit mention notifications, org-level GitHub App install control, spam notification counter fix, GitHub App installation request blocking. Three items have placeholder changelog URLs to be filled in. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Adds new “Tiny Wins” feature entries (Jul–Dec 2025) to the Ships page dataset so they appear on /ships.
Changes:
- Appends 14 new ship entries (Q1: 9, Q2: 5) to
content/ships/ships.json. - Introduces several new categories (e.g., Actions, Moderation, Organization Management) for display as chips.
Comments suppressed due to low confidence (3)
content/ships/ships.json:120
- This
urlis a placeholder (https://github.blog/changelog/) and is also duplicated elsewhere in this file. Since the ships grid usesship.urlas the Reactkey, duplicated placeholder URLs will cause key collisions. Please replace this with the specific changelog URL for this ship (and ensure it's unique).
"url": "https://github.blog/changelog/",
"title": "Improved relative/absolute time threshold in Actions workflow executions",
"description": "Workflow run timestamps now switch from relative to absolute format after one hour for easier debugging and correlation.",
"date": "2025-09-18",
"category": "Actions"
content/ships/ships.json:148
- This
urlis still the generic placeholder (https://github.blog/changelog/), which duplicates the placeholder used by other ships in this PR. Duplicate URLs will collide with the Reactkey(key={ship.url}) and can cause rendering issues. Please update to the real, unique changelog URL for this ship.
"url": "https://github.blog/changelog/",
"title": "New org-level setting to control repo admin permissions for installing GitHub Apps",
"description": "Organization owners can now restrict whether repo admins can install GitHub Apps, adding a layer of governance.",
"date": "2025-11-01",
"category": "Organization Management"
content/ships/ships.json:162
- This
urlis a duplicated placeholder (https://github.blog/changelog/). Because the ships UI usesship.urlas the React list key, duplicate placeholder URLs can cause key collisions and incorrect UI updates. Please replace with the specific, unique changelog URL for this ship.
"url": "https://github.blog/changelog/",
"title": "Block org members from requesting GitHub App installations",
"description": "Organization owners can now prevent members from submitting GitHub App installation requests.",
"date": "2025-11-15",
"category": "Organization Management"
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "url": "https://github.blog/changelog/2025-08-14-clearer-pull-request-reviewer-status-and-enhanced-email-filtering/", | ||
| "title": "Custom headers added to Issue and PR email notifications", | ||
| "description": "Notification emails now include metadata headers for labels, assignees, milestones, and issue types for easier filtering.", | ||
| "date": "2025-08-14", | ||
| "category": "Notifications" |
There was a problem hiding this comment.
This entry reuses the same url as the previous ship (the 2025-08-14 reviewer-status item). components/ships/Ships.jsx uses ship.url as the React key, so duplicate URLs will cause key collisions and can lead to incorrect rendering/updating. Please ensure each ship has a unique URL (or update the rendering key to something guaranteed-unique, e.g. url + title).
This issue also appears in the following locations of the same file:
- line 116
- line 144
- line 158
| "title": "New org-level setting to control repo admin permissions for installing GitHub Apps", | ||
| "description": "Organization owners can now restrict whether repo admins can install GitHub Apps, adding a layer of governance.", | ||
| "date": "2025-11-01", | ||
| "category": "Organization Management" |
There was a problem hiding this comment.
The list appears to be kept in descending date order at the top of the file, but this 2025-11-01 ship is placed after a 2025-12-08 entry. Even though the UI sorts by date at runtime, keeping ships.json ordered by date makes reviews and future edits less error-prone. Consider reordering these 2025 entries to maintain descending date order.
Adds 14 feature ships from the Fixing OSS Pain Points / Tiny Wins tracker (Jul-Dec 2025).
Q1 ships (9):
Q2 ships (5):
Note: Three items have placeholder changelog URLs (pointing to
github.blog/changelog/) that need real links filled in:All 7 ships.test.js validations pass.
cc @moraesc