feat(issues): Fully enable recording of Seer actions as issue activities (with option)#116424
Merged
shashjar merged 3 commits intoMay 28, 2026
Conversation
shashjar
commented
May 28, 2026
| # https://linear.app/getsentry/project/add-seer-actions-to-issue-activityaction-log-0e641e1f5dac/overview | ||
| register( | ||
| "issues.record-seer-actions-as-activities", | ||
| default=True, |
Member
Author
There was a problem hiding this comment.
Defaults to True, so recording of these activities will be enabled for all orgs on deploy
shayna-ch
approved these changes
May 28, 2026
…as-issue-activities-fully-with-option
cvxluo
approved these changes
May 28, 2026
shashjar
added a commit
that referenced
this pull request
May 29, 2026
…tions as issue details activities (#116425) https://linear.app/getsentry/project/add-seer-actions-to-issue-activityaction-log-0e641e1f5dac/overview Follow-up to #116424. Renames the `seer-activity-timeline` feature flag to `display-seer-actions-as-issue-activities` to clarify that this flag only gates the *display* of Seer activities in the issue details timeline. The *recording* of these activities is controlled by the `issues.record-seer-actions-as-activities` option added in the above PR.
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.
https://linear.app/getsentry/project/add-seer-actions-to-issue-activityaction-log-0e641e1f5dac/overview
Replaces the per-org
seer-activity-timelinefeature flag check with a globalissues.record-seer-actions-as-activitiesoption for gating the recording of Seer actions as issue activities in the backend, using the Seer webhook. This PR enables recording Seer activities (RCA, solution, coding, PR creation) for all organizations by default, while retaining an option-based killswitch.The existing
seer-activity-timelinefeature flag is preserved and will be repurposed in a follow-up frontend PR to gate only the display of these activities in the issue details timeline.