From 8429a79fdfad7ef157959abe14a8cd0018baec0c Mon Sep 17 00:00:00 2001 From: Elliott Brooks <21270878+elliette@users.noreply.github.com> Date: Fri, 20 Oct 2023 09:18:00 -0700 Subject: [PATCH] Only notify chatroom when daily stable testing fails (#2259) --- .github/workflows/daily_stable_testing.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/daily_stable_testing.yml b/.github/workflows/daily_stable_testing.yml index 06ad22381..9012bd94b 100644 --- a/.github/workflows/daily_stable_testing.yml +++ b/.github/workflows/daily_stable_testing.yml @@ -46,8 +46,7 @@ jobs: if: "always() && steps.webdev_pub_upgrade.conclusion == 'success'" working-directory: webdev - name: "Notify failure" - # TODO(elliette): Uncomment after determining that notifications are working. - # if: "always() && steps.webdev_stable_tests.conclusion == 'failure'" + if: "always() && steps.webdev_stable_tests.conclusion == 'failure'" run: | curl -H "Content-Type: application/json" -X POST -d \ "{'text':'Daily stable tests failed! ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}'}" \