diff --git a/.github/scripts/update-contributors.js b/.github/scripts/update-contributors.js index 564980ca4..241de5dc7 100644 --- a/.github/scripts/update-contributors.js +++ b/.github/scripts/update-contributors.js @@ -13,7 +13,7 @@ axios.get('https://api.github.com/repos/FonduemangVI/Guides/contributors') response.data.forEach((user) => { // Exclude bots - if (user.type === 'Bot') return; + if (user.type === 'Bot' || user.login.toLowerCase().includes('bot')) return; if (index % 6 === 0) { contributors += '';