Merge pull request #10438 from Icinga/Al2Klimov-patch-7

GHA: AUTHORS: use sed(1), not grep(1)
This commit is contained in:
Julian Brost 2025-05-16 11:30:20 +02:00 committed by GitHub
commit 26b320ab92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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