Skip to content

Commit

Permalink
Update update-set-implementation-lists.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpensiveKoala authored Sep 29, 2024
1 parent 18101a3 commit 0e5b886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-set-implementation-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
const className = toCamelCase(cardData[0].replace(/[+]/g, ' Plus ').replace(/[_]+/g, ' Blank ').replace(/[']/g, '').replace(/[-+,.!?`@#$%^&*()_=<>:";~\\|/]/g, ' '));
const cleanCardName = cardData[0].replace(/[-,'.!?`@#$%^&*()_=<>:";~\\|/\s]/g, '').toLowerCase();
const cardPath = path.join('Mage.Sets', 'src', 'mage', 'cards', className.substring(0, 1), `${className.charAt(0).toUpperCase()+className.slice(1)}.java`);
const claimed = false;
let claimed = false;
issueComments && issueComments.forEach(comment => {
if (comment.body && comment.body.search(new RegExp(cleanCardName, "i")) != -1) {
console.log(`Found a comment by ${comment.user.login} claiming card ${cardData[0]}`);
Expand Down

0 comments on commit 0e5b886

Please sign in to comment.