From 3bf1dc8c6e5aac972b2bb1740aa974cfe7679dcc Mon Sep 17 00:00:00 2001 From: jachamp <28732543+jimchamp@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:54:34 -0800 Subject: [PATCH] Notify channel when `cron_watcher` fails --- .github/workflows/cron_watcher.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cron_watcher.yml b/.github/workflows/cron_watcher.yml index 0645b50e460..dfa1035a4ed 100644 --- a/.github/workflows/cron_watcher.yml +++ b/.github/workflows/cron_watcher.yml @@ -35,6 +35,6 @@ jobs: channel = os.getenv("SLACK_CHANNEL_ABC_TEAM_PLUS") if token and channel: slack_sdk.WebClient(token=token).chat_postMessage(channel=channel, - text=" has failed.", + text=": has failed.", ) sys.exit(1)