From 0a41dc8a0588dbc37d53dfcf47a700f6cb26ac92 Mon Sep 17 00:00:00 2001 From: FonduemangVI <15520607+FonduemangVI@users.noreply.github.com> Date: Mon, 20 May 2024 22:44:22 +1000 Subject: [PATCH] update with colours --- .github/scripts/update-contributors.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/scripts/update-contributors.js b/.github/scripts/update-contributors.js index a48db9867..70e411e4c 100644 --- a/.github/scripts/update-contributors.js +++ b/.github/scripts/update-contributors.js @@ -22,15 +22,19 @@ function fetchPage() { return; } - response.data.forEach((user) => { + response.data.forEach((user, i) => { // Exclude bots and actions-user if (user.type === 'Bot' || user.login.toLowerCase().includes('bot') || user.login === 'actions-user' || user.login === 'mynameisbogdan') return; + // Determine row index for background color + const rowIndex = Math.floor(index / 5); + const bgColor = (rowIndex % 2 === 0) ? '#1e2129' : '#303850'; + const userHtml = ` -