update to catch bot accounts

pull/1680/head
FonduemangVI 8 months ago
parent a752383a78
commit d22829b6d4

@ -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 += '<tr>';

Loading…
Cancel
Save