From e5ba06193342fbb39f0b6260a6276af48c6c369d Mon Sep 17 00:00:00 2001 From: Celian Raimbault Date: Wed, 8 Jan 2025 10:56:07 +0100 Subject: [PATCH] [notif] Replaced channel by id --- tasks/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/notify.py b/tasks/notify.py index 7d582ff51f5534..690381de84d5ab 100644 --- a/tasks/notify.py +++ b/tasks/notify.py @@ -77,7 +77,7 @@ def send_message(_, notification_type="merge", print_to_stdout=False): if failed_jobs.all_mandatory_failures(): # At least one mandatory job failed header_icon = ":host-red:" state = "failed" - coda = "If there is something wrong with the notification please contact #agent-developer-experience" + coda = "If there is something wrong with the notification please contact <#C06PBHLD4DQ>" else: header_icon = ":host-green:" state = "succeeded" @@ -357,7 +357,7 @@ def create_msg(pipeline_id, pipeline_url, job_list): msg += f" - {job}\n" msg += "\n" msg += "\n" - msg += "If you modified Go files and expected unit tests to run in these jobs, please double check the job logs. If you think tests should have been executed reach out to #agent-developer-experience" + msg += "If you modified Go files and expected unit tests to run in these jobs, please double check the job logs. If you think tests should have been executed reach out to <#C06PBHLD4DQ>" return msg