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 2DCD415ACFB for ; Thu, 20 Apr 2023 15:20:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35CDFE0903; Thu, 20 Apr 2023 15:20:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BC2FE0903 for ; Thu, 20 Apr 2023 15:20:06 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CAFE340B1E for ; Thu, 20 Apr 2023 15:20:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 738FE141 for ; Thu, 20 Apr 2023 15:20:02 +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: <1682003889.eaf430a014bd8decbc1ea663fb13f74c0e192ee1.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/pkgcheck.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: eaf430a014bd8decbc1ea663fb13f74c0e192ee1 X-VCS-Branch: dev Date: Thu, 20 Apr 2023 15:20: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: 85c2a414-6db4-484d-9253-d7306a1b9d73 X-Archives-Hash: d56aecc44b874c653a0bbfb7bdff21fe commit: eaf430a014bd8decbc1ea663fb13f74c0e192ee1 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Thu Apr 20 15:18:09 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Apr 20 15:18:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eaf430a0 .github/workflows: run CI on schedule Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .github/workflows/duplicates.yml | 9 +++++---- .github/workflows/pkgcheck.yml | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/duplicates.yml b/.github/workflows/duplicates.yml index e79bfe6ee..20a593e50 100644 --- a/.github/workflows/duplicates.yml +++ b/.github/workflows/duplicates.yml @@ -1,8 +1,8 @@ ---- - name: duplicates on: + schedule: + - cron: '0 12 * * *' push: branches: [dev] pull_request: @@ -13,15 +13,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + ref: dev - name: Setup master gentoo repository run: | ./scripts/setup-master-gentoo.sh - name: Check for duplicates run: | ./scripts/check-duplicates.sh - - name: Inform on IRC - if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }} + if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name != 'pull_request' }} uses: rectalogic/notify-irc@v1 with: channel: "#gentoo-guru" diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml index 665c96a9c..32ce5ba8b 100644 --- a/.github/workflows/pkgcheck.yml +++ b/.github/workflows/pkgcheck.yml @@ -1,8 +1,8 @@ ---- - name: pkgcheck on: + schedule: + - cron: '0 12 * * *' push: branches: [dev] pull_request: @@ -13,13 +13,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + ref: dev - name: Run pkgcheck uses: pkgcore/pkgcheck-action@v1 with: args: --keywords=-RedundantVersion,-NonsolvableDepsInDev - - name: Inform on IRC - if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }} + if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name != 'pull_request' }} uses: rectalogic/notify-irc@v1 with: channel: "#gentoo-guru"