From 116e1ce207f73024e20dc5dd58554722af757bd7 Mon Sep 17 00:00:00 2001 From: FonduemangVI <15520607+FonduemangVI@users.noreply.github.com> Date: Tue, 16 Apr 2024 10:49:56 +1000 Subject: [PATCH] Update rows --- .github/scripts/update-contributors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/update-contributors.js b/.github/scripts/update-contributors.js index 26049c8c5..62b3b4535 100644 --- a/.github/scripts/update-contributors.js +++ b/.github/scripts/update-contributors.js @@ -26,13 +26,13 @@ function fetchPage() { // Exclude bots and actions-user if (user.type === 'Bot' || user.login.toLowerCase().includes('bot') || user.login === 'actions-user') return; - if (index % 6 === 0) { + if (index % 5 === 0) { contributors += ''; } const userHtml = ` - ${user.login} + ${user.login}
${user.login} `;