From ed9c6b149328312fd43f6a0642e0fac612f39963 Mon Sep 17 00:00:00 2001 From: Jonas Hungershausen Date: Thu, 4 Apr 2024 15:24:27 +0200 Subject: [PATCH] chore: add slack fail notification (#348) --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 44a6a3c9a7..becfa27f8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,6 @@ version: 2.1 +orbs: + slack: circleci/slack@4.9.3 jobs: publish: @@ -18,6 +20,9 @@ jobs: - run: ./scripts/generate.sh - run: ./scripts/test.sh - run: ./scripts/release.sh + - slack/notify: + event: fail + template: basic_fail_1 workflows: publish: @@ -26,3 +31,4 @@ workflows: filters: branches: only: master + context: slack-secrets