Include issue number of favoured issue in notification email when another issue is closed as a duplicate of it #203023
Replies: 3 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
I agree this would be a small but meaningful usability improvement. When following repositories by email, it's much more convenient to know which issue was chosen as the primary one without having to open GitHub. Including the canonical issue number (and ideally its title) in the notification would provide the same context that's already available on the web interface while reducing unnecessary clicks. This seems like a straightforward improvement to the email notifications. |
|
The web page already has the missing context, and the public API exposes it too, so this looks like an email-rendering gap rather than missing issue data. For the Meson example, the timeline for #8213 contains a A practical workaround is to follow the issue link from the email and query that timeline when you need the canonical target; clients should paginate the timeline because the event may be older than the first page. The product change could then be small and unambiguous: render the existing “Closed #8213 as duplicate” line as “Closed #8213 as duplicate of #5024 — C++20 modules are in…”, linking both issues. That preserves the current notification while putting the same |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Product Feedback
💬 Feature/Topic Area
Code Search and Navigation
Body
I follow the activity of several repos via Watch - All Activity and so receive an email when anything happens. A niggling issue is that when an issue is closed as a duplicate, the email does not say which issue it is a duplicate of. Leaving the email interface and opening the website reveals that GitHub 'knows' what issue is considered primary, the email just doesn't include this information.
An example from the mesonbild/meson repo:
Text in notification email: "Closed #8213 as duplicate."
Opening the issue in a web browser shows this same event as: "dcbaker closed this as a duplicate of C++20 modules are in: discussing a sane (experimental) design for Meson #5024"
Why can't the email be: "Closed #8213 as duplicate of #5024." ?
All reactions