From 34d6ba9fd363ac2914ba343d78981cc374cb5f4b Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Mon, 10 Nov 2025 19:33:41 +0100 Subject: [PATCH] Update list of known AI bots in generate acknowledgements workflow --- .github/workflows/generateAcknowledgements.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generateAcknowledgements.yml b/.github/workflows/generateAcknowledgements.yml index da72a9bb..aa2b736a 100644 --- a/.github/workflows/generateAcknowledgements.yml +++ b/.github/workflows/generateAcknowledgements.yml @@ -236,7 +236,10 @@ jobs: } function isBot(author) { - return author.email.endsWith("-bot@eclipse.org") || author.email.endsWith("[bot]@users.noreply.github.com") || author.name == 'eclipse-releng-bot' + const email = author.email.toLowerCase() + return email.endsWith("-bot@eclipse.org") || email.endsWith("[bot]@users.noreply.github.com") || author.name == 'eclipse-releng-bot' + || email.endsWith('+copilot@users.noreply.github.com') + || email.endsWith('+claude@users.noreply.github.com') } function computeIfAbsent(map, key, valueSupplier) {