From d54b465409acc5e60029ceb49b959d4cf87d6ebc Mon Sep 17 00:00:00 2001 From: Arne Welzel Date: Sat, 28 Jan 2023 15:10:14 +0100 Subject: [PATCH] ci-notification: No notifications for "skipped" runs [skip ci] It is not useful to receive email notifications for CI runs that were skipped. --- .github/workflows/ci-notification.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-notification.yml b/.github/workflows/ci-notification.yml index e805e86664..386376b8ae 100644 --- a/.github/workflows/ci-notification.yml +++ b/.github/workflows/ci-notification.yml @@ -15,7 +15,7 @@ jobs: env: CI_APP_NAME: "Cirrus CI" BRANCH_REGEX: "master|release/.*" - SKIP_CONCLUSIONS: 'cancelled,neutral' + SKIP_CONCLUSIONS: 'cancelled,neutral,skipped' SMTP_HOST: ${{ secrets.SMTP_HOST }} SMTP_PORT: ${{ secrets.SMTP_PORT }} SMTP_USER: ${{ secrets.SMTP_USER }}