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 = ` -