feat(issues): Tag issue stream analytics with AnalyticsArea#113505
Merged
Conversation
Adds a required `area` field to `issues_stream.archived`, `merged`, `updated_priority`, and `issue_assigned`, wired up via the existing `AnalyticsArea` context instead of a prop. Archive and priority tracking moves from `IssueListActions` into `ActionSet` where the buttons actually live - both callers (main stream and supergroup drawer) now get it for free. `StreamGroup` reads the area the same way. The supergroup drawer wraps itself in `<AnalyticsArea name="supergroup_drawer">` so bulk actions and assignments emitted from inside it are distinguishable from the main `issue_list` area without any prop threading. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Adds `issues_stream.resolved` alongside `issues_stream.archived`, fired from `ActionSet.handleUpdate` when status flips to resolved. Records the resolve type (inRelease, inNextRelease, inCommit, inUpcomingRelease) as `action_status_details` and picks up the current `area` the same way the archive event does. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
scttcper
marked this pull request as ready for review
April 20, 2026 23:57
cvxluo
approved these changes
Apr 21, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Uses an analytics "area" to associate actions with either the issues stream or the supergroup drawer
Adds missing analytic event for resolution