From d507db5b858f6e602e41dd8744848064e1e73a46 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Fri, 20 Mar 2026 14:46:26 -0700 Subject: [PATCH] check mid stage --- .azure-pipelines/advanced-test.yml | 1 + tools/notify_mattermost.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/advanced-test.yml b/.azure-pipelines/advanced-test.yml index 0b77214ad..6418ccdb7 100644 --- a/.azure-pipelines/advanced-test.yml +++ b/.azure-pipelines/advanced-test.yml @@ -13,4 +13,5 @@ variables: stages: - template: templates/stages/test-and-package-stage.yml + - template: templates/stages/changelog-stage.yml - template: templates/stages/notify-stage.yml diff --git a/tools/notify_mattermost.py b/tools/notify_mattermost.py index 2b9848b0c..17feb6f75 100755 --- a/tools/notify_mattermost.py +++ b/tools/notify_mattermost.py @@ -34,9 +34,10 @@ def get_message(): r = requests.get(timeline_url) data = r.json() for x in data['records']: - if x['name'] == 'Deploy': + if x['name'] == 'Changelog': deploy_result = x['result'] break + print(f'deploy_result is {deploy_result}') # or data[-6(-ish)]['result']