From 4d712d7ae6bbf1745711839b576cf83d655a1564 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 20 Mar 2026 15:17:11 -0700 Subject: [PATCH] change example stage name to Stage2 --- tools/notify_mattermost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/notify_mattermost.py b/tools/notify_mattermost.py index 320f90c64..7c8def966 100755 --- a/tools/notify_mattermost.py +++ b/tools/notify_mattermost.py @@ -35,7 +35,7 @@ def get_message(): response = requests.get(timeline_url) response.raise_for_status() data = response.json() - deploy_record = next((rec for rec in data['records'] if rec['name'] == 'Deploy'), None) + deploy_record = next((rec for rec in data['records'] if rec['name'] == 'Stage2'), None) if deploy_record is None: raise RuntimeError('Unable to find the record for the Deploy stage') deploy_result = deploy_record['result']