Skip to content

Commit 77192cd

Browse files
committed
Update list of known AI bots in generate acknowledgements workflow
1 parent f6273b7 commit 77192cd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/generateAcknowledgements.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,10 @@ jobs:
236236
}
237237
238238
function isBot(author) {
239-
return author.email.endsWith("[email protected]") || author.email.endsWith("[bot]@users.noreply.github.com") || author.name == 'eclipse-releng-bot'
239+
const email = author.email.toLowerCase()
240+
return email.endsWith("[email protected]") || email.endsWith("[bot]@users.noreply.github.com") || author.name == 'eclipse-releng-bot'
241+
|| email.endsWith('[email protected]')
242+
|| email.endsWith('[email protected]')
240243
}
241244
242245
function computeIfAbsent(map, key, valueSupplier) {

0 commit comments

Comments
 (0)