From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1728352-garchives=archives.gentoo.org@lists.gentoo.org> 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 C38881584F2 for <garchives@archives.gentoo.org>; Sat, 15 Mar 2025 18:17:47 +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 B02AE3431EB for <garchives@archives.gentoo.org>; Sat, 15 Mar 2025 18:17:47 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EA78711037F; Sat, 15 Mar 2025 18:17:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id E479711037F for <gentoo-commits@lists.gentoo.org>; 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 A07263431D4 for <gentoo-commits@lists.gentoo.org>; Sat, 15 Mar 2025 18:17:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C1152035 for <gentoo-commits@lists.gentoo.org>; Sat, 15 Mar 2025 18:17:42 +0000 (UTC) From: "Takuya Wakazono" <pastalian46@gmail.com> 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" <pastalian46@gmail.com> Message-ID: <1742062480.19f093de0690883615e435e27588ceaf1bbc6a0e.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: 19f093de0690883615e435e27588ceaf1bbc6a0e X-VCS-Branch: dev Date: Sat, 15 Mar 2025 18:17:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b4114b60-2b74-45b4-a454-8e87a791e920 X-Archives-Hash: a0081150c7e51de82c561082bf75676d commit: 19f093de0690883615e435e27588ceaf1bbc6a0e Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com> AuthorDate: Sat Mar 15 17:53:57 2025 +0000 Commit: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com> CommitDate: Sat Mar 15 18:14:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19f093de .github/workflows: use bash as the default shell GitHub Actions adds pipefail only when we use bash. https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell Closes: https://github.com/gentoo/guru/pull/303 Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com> .github/workflows/emails.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/emails.yml b/.github/workflows/emails.yml index 09dfb8209..8431ba843 100644 --- a/.github/workflows/emails.yml +++ b/.github/workflows/emails.yml @@ -8,6 +8,10 @@ on: pull_request: branches: [dev] +defaults: + run: + shell: bash + jobs: bugzilla: runs-on: ubuntu-latest