Update update-set-implementation-lists.yml

This commit is contained in:
ExpensiveKoala 2024-09-29 14:03:15 -07:00 committed by GitHub
parent e88c01174c
commit 9e0485320c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,7 +104,7 @@ jobs:
// Find if someone left a comment with the card name (if someone did, we will put a check mark on the item)
let claimed = false;
issueComments && issueComments.forEach(comment => {
if (comment.body && comment.body.search(new RegExp(cardData[0], "i")) != -1 || comment.body.search(new RegExp(cleanCardName, "i") != -1) {
if (comment.body && comment.body.search(new RegExp(cardData[0], "i")) != -1 || comment.body.search(new RegExp(cleanCardName, "i")) != -1) {
console.log(`Found a comment by ${comment.user.login} claiming card ${cardData[0]}`);
claimed = true;
}