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 D26CD15A7D9 for ; Fri, 17 Mar 2023 11:42:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13F4DE0AC1; Fri, 17 Mar 2023 11:42:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F14A9E0AC1 for ; Fri, 17 Mar 2023 11:42:04 +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 39491341092 for ; Fri, 17 Mar 2023 11:42:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC6F27F5 for ; Fri, 17 Mar 2023 11:42:02 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1679053315.139f67b9b368c5f080f8af8fb93f7c61ef443687.arthurzam@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: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 139f67b9b368c5f080f8af8fb93f7c61ef443687 X-VCS-Branch: dev Date: Fri, 17 Mar 2023 11:42:02 +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: b3840f98-91a3-4cfc-b782-d16b9a4df4af X-Archives-Hash: 2a970bf808c2269d8462b4f0c831e6b9 commit: 139f67b9b368c5f080f8af8fb93f7c61ef443687 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Mar 17 11:40:56 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Mar 17 11:41:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=139f67b9 ci: notify on IRC for failing ci Signed-off-by: Arthur Zamarin gentoo.org> .github/workflows/duplicates.yml | 9 +++++++++ .github/workflows/emails.yml | 9 +++++++++ .github/workflows/pkgcheck.yml | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/.github/workflows/duplicates.yml b/.github/workflows/duplicates.yml index 3c12675ac..8f6c0a47e 100644 --- a/.github/workflows/duplicates.yml +++ b/.github/workflows/duplicates.yml @@ -19,3 +19,12 @@ jobs: - name: Check for duplicates run: | ./scripts/check-duplicates.sh + + - name: Inform on IRC + if: ${{ failure() && github.repository == 'gentoo/guru' }} + uses: rectalogic/notify-irc@v1 + with: + channel: "#gentoo-guru" + server: "irc.libera.chat" + nickname: "github-ci" + message: CI failure detected on job ${{ github.workflow }} - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} diff --git a/.github/workflows/emails.yml b/.github/workflows/emails.yml index 12f70387f..2987863c6 100644 --- a/.github/workflows/emails.yml +++ b/.github/workflows/emails.yml @@ -43,3 +43,12 @@ jobs: - name: Check Emails against bugzilla run: | python ./scripts/email-checker.py ${{ steps.changed-files.outputs.all_changed_files }} + + - name: Inform on IRC + if: ${{ failure() && github.repository == 'gentoo/guru' }} + uses: rectalogic/notify-irc@v1 + with: + channel: "#gentoo-guru" + server: "irc.libera.chat" + nickname: "github-ci" + message: CI failure detected on job ${{ github.workflow }} - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml index be7ad363d..9289d258c 100644 --- a/.github/workflows/pkgcheck.yml +++ b/.github/workflows/pkgcheck.yml @@ -17,3 +17,12 @@ jobs: uses: pkgcore/pkgcheck-action@v1 with: args: --keywords=-RedundantVersion,-NonsolvableDepsInDev + + - name: Inform on IRC + if: ${{ failure() && github.repository == 'gentoo/guru' }} + uses: rectalogic/notify-irc@v1 + with: + channel: "#gentoo-guru" + server: "irc.libera.chat" + nickname: "github-ci" + message: CI failure detected on job ${{ github.workflow }} - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}