From 2b0f87be35bf7d8889a2ab7f2ce630522ddf163a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Thu, 21 Mar 2024 09:03:36 +0100 Subject: [PATCH] Skip IRC notification if the integration test is started manually --- .github/workflows/ci-integration-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-integration-tests.yml b/.github/workflows/ci-integration-tests.yml index 7e30ddbeb4..ec1dff1975 100644 --- a/.github/workflows/ci-integration-tests.yml +++ b/.github/workflows/ci-integration-tests.yml @@ -101,8 +101,8 @@ jobs: - name: IRC notification # see https://github.com/marketplace/actions/irc-message-action uses: Gottox/irc-message-action@v2 - # never run in forks - if: failure() && github.repository_owner == 'openSUSE' + # never run in forks or when triggered manually + if: failure() && github.repository_owner == 'openSUSE' && github.event_name != 'workflow_dispatch' with: channel: "#yast" nickname: github-action