We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6273b7 commit 77192cdCopy full SHA for 77192cd
.github/workflows/generateAcknowledgements.yml
@@ -236,7 +236,10 @@ jobs:
236
}
237
238
function isBot(author) {
239
- 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()
240
+ return email.endsWith("-bot@eclipse.org") || email.endsWith("[bot]@users.noreply.github.com") || author.name == 'eclipse-releng-bot'
241
+ || email.endsWith('+copilot@users.noreply.github.com')
242
+ || email.endsWith('+claude@users.noreply.github.com')
243
244
245
function computeIfAbsent(map, key, valueSupplier) {
0 commit comments