From 018a0c936d1d0cebc881cd3545814ed2e423a017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Fri, 16 May 2025 10:54:24 +0200 Subject: [PATCH] GHA: AUTHORS: use sed(1), not grep(1) grep(1)'s exit code causes the GHA to fail in contrast to sed(1). --- .github/workflows/authors-file.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/authors-file.yml b/.github/workflows/authors-file.yml index 2e5ac25ee..8824bbdab 100644 --- a/.github/workflows/authors-file.yml +++ b/.github/workflows/authors-file.yml @@ -21,7 +21,7 @@ jobs: git add AUTHORS git log --format='format:%aN <%aE>' "$( git merge-base HEAD^1 HEAD^2 - )..HEAD^2" | grep -vEe '^dependabot\[bot] ' >> AUTHORS + )..HEAD^2" | sed '/^dependabot\[bot] /d' >> AUTHORS sort -uo AUTHORS AUTHORS git diff AUTHORS >> AUTHORS.diff