From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 530B315802F for ; Fri, 31 Mar 2023 15:28:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D02AE07F6; Fri, 31 Mar 2023 15:28:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53B4FE07F6 for ; Fri, 31 Mar 2023 15:28:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C27A340EBE for ; Fri, 31 Mar 2023 15:28:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C386A0D for ; Fri, 31 Mar 2023 15:28:27 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1680276483.2751058f2ac3f1f49611572ff2499b0e424be115.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: .github/workflows/ X-VCS-Repository: repo/proj/guru X-VCS-Files: .github/workflows/duplicates.yml .github/workflows/emails.yml .github/workflows/pkgcheck.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 2751058f2ac3f1f49611572ff2499b0e424be115 X-VCS-Branch: dev Date: Fri, 31 Mar 2023 15:28:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2acc9cd3-2792-4454-aed9-3293de8948b0 X-Archives-Hash: 12c2cef47ce7fffc9565924fa8af01e9 commit: 2751058f2ac3f1f49611572ff2499b0e424be115 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Fri Mar 31 15:28:03 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Fri Mar 31 15:28:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2751058f .github/workflows: notify on push only Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .github/workflows/duplicates.yml | 2 +- .github/workflows/emails.yml | 2 +- .github/workflows/pkgcheck.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/duplicates.yml b/.github/workflows/duplicates.yml index 8f6c0a47e..e79bfe6ee 100644 --- a/.github/workflows/duplicates.yml +++ b/.github/workflows/duplicates.yml @@ -21,7 +21,7 @@ jobs: ./scripts/check-duplicates.sh - name: Inform on IRC - if: ${{ failure() && github.repository == 'gentoo/guru' }} + if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }} uses: rectalogic/notify-irc@v1 with: channel: "#gentoo-guru" diff --git a/.github/workflows/emails.yml b/.github/workflows/emails.yml index 2987863c6..285effa1b 100644 --- a/.github/workflows/emails.yml +++ b/.github/workflows/emails.yml @@ -45,7 +45,7 @@ jobs: python ./scripts/email-checker.py ${{ steps.changed-files.outputs.all_changed_files }} - name: Inform on IRC - if: ${{ failure() && github.repository == 'gentoo/guru' }} + if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }} uses: rectalogic/notify-irc@v1 with: channel: "#gentoo-guru" diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml index 9289d258c..665c96a9c 100644 --- a/.github/workflows/pkgcheck.yml +++ b/.github/workflows/pkgcheck.yml @@ -19,7 +19,7 @@ jobs: args: --keywords=-RedundantVersion,-NonsolvableDepsInDev - name: Inform on IRC - if: ${{ failure() && github.repository == 'gentoo/guru' }} + if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }} uses: rectalogic/notify-irc@v1 with: channel: "#gentoo-guru"