diff --git a/src/seer/automation/autofix/autofix_context.py b/src/seer/automation/autofix/autofix_context.py index 31bd036c..23d7cf86 100644 --- a/src/seer/automation/autofix/autofix_context.py +++ b/src/seer/automation/autofix/autofix_context.py @@ -273,13 +273,13 @@ def commit_changes( pr_description = textwrap.dedent( """\ - 👋 Hi there! This PR was automatically generated by Autofix 🤖 + 👋 Hi there! This PR was generated by Sentry Autofix 🤖 {user_line} {ref_note} {description} - If you have any questions or feedback for the Sentry team about this fix, please email [autofix@sentry.io](mailto:autofix@sentry.io) with the Run ID (see below). + Got feedback? Email [autofix@sentry.io](mailto:autofix@sentry.io) with the Run ID below. ### 🤓 Stats for the nerds: Run ID: **{run_id}** diff --git a/src/seer/automation/codebase/repo_client.py b/src/seer/automation/codebase/repo_client.py index 1d6fd8ea..0ea7a937 100644 --- a/src/seer/automation/codebase/repo_client.py +++ b/src/seer/automation/codebase/repo_client.py @@ -505,7 +505,7 @@ def comment_pr_generated_for_copilot( ] # should be "owner/repo" url = f"https://api.github.com/repos/{repo_name}/issues/{pull_id}/comments" - comment = f"A fix has been generated and is available [here]({new_pr_url}) for your review. Autofix Run ID: {run_id}" + comment = f"A fix has been generated and is available [here]({new_pr_url}) for review." params = {"body": comment}