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']