remove bots

pull/1680/head
FonduemangVI 8 months ago
parent f0a8fa715c
commit a47fe7f0d4

@ -9,8 +9,12 @@ function indentString(string, indentation) {
axios.get('https://api.github.com/repos/FonduemangVI/Guides/contributors') axios.get('https://api.github.com/repos/FonduemangVI/Guides/contributors')
.then((response) => { .then((response) => {
let contributors = '<table>\n'; let contributors = '<table>\n';
let index = 0;
response.data.forEach((user) => {
// Exclude bots
if (user.type === 'Bot') return;
response.data.forEach((user, index) => {
if (index % 6 === 0) { if (index % 6 === 0) {
contributors += '<tr>'; contributors += '<tr>';
} }
@ -29,6 +33,8 @@ axios.get('https://api.github.com/repos/FonduemangVI/Guides/contributors')
if ((index + 1) % 6 === 0 || index === response.data.length - 1) { if ((index + 1) % 6 === 0 || index === response.data.length - 1) {
contributors += '\n</tr>\n'; contributors += '\n</tr>\n';
} }
index++;
}); });
contributors += '</table>\n'; contributors += '</table>\n';

Loading…
Cancel
Save