From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 06C8C1584F2 for ; Sat, 15 Mar 2025 18:17:45 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E374534310B for ; Sat, 15 Mar 2025 18:17:44 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E28981102B7; Sat, 15 Mar 2025 18:17:43 +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 bobolink.gentoo.org (Postfix) with ESMTPS id DB2211102B7 for ; Sat, 15 Mar 2025 18:17:43 +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 87F5734310B for ; Sat, 15 Mar 2025 18:17:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27DB61910 for ; Sat, 15 Mar 2025 18:17:42 +0000 (UTC) From: "Takuya Wakazono" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Takuya Wakazono" Message-ID: <1742062473.4d769f1bcba786df7f34340f21e1859c052d2dd8.pastalian46@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: .github/workflows/ X-VCS-Repository: repo/proj/guru X-VCS-Files: .github/workflows/emails.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: pastalian46 X-VCS-Committer-Name: Takuya Wakazono X-VCS-Revision: 4d769f1bcba786df7f34340f21e1859c052d2dd8 X-VCS-Branch: dev Date: Sat, 15 Mar 2025 18:17:42 +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: f6882eb5-22c6-4640-a942-2e8200ad605c X-Archives-Hash: afe14e5ce6591c8af3304c374bd3c7e3 commit: 4d769f1bcba786df7f34340f21e1859c052d2dd8 Author: Takuya Wakazono gmail com> AuthorDate: Sat Mar 15 15:51:04 2025 +0000 Commit: Takuya Wakazono gmail com> CommitDate: Sat Mar 15 18:14:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d769f1b .github/workflows: replace changed-files action with git-diff tj-actions/changed-files repo was compromised and has been removed. Signed-off-by: Takuya Wakazono gmail.com> .github/workflows/emails.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/emails.yml b/.github/workflows/emails.yml index d7465dc7b..09dfb8209 100644 --- a/.github/workflows/emails.yml +++ b/.github/workflows/emails.yml @@ -40,17 +40,13 @@ jobs: - name: Get changed files if: ${{ fromJSON(env.is_commit_valid) }} - uses: tj-actions/changed-files@v44 - with: - base_sha: ${{ env.last_successful_commit }} - write_output_files: true - files: | - **/metadata.xml + run: | + git diff --diff-filter d --name-only ${last_successful_commit} -- '*/metadata.xml' | tr '\n' ' ' | tee all_changed_files.txt - name: Check emails against Bugzilla if: ${{ fromJSON(env.is_commit_valid) }} run: | - python ./scripts/email-checker.py < .github/outputs/all_changed_files.txt + python ./scripts/email-checker.py < all_changed_files.txt - name: Inform on IRC if: ${{ failure() && github.repository == 'gentoo/guru' && github.event_name == 'push' }}