From c10c69a78bbaa1022829ba5e79db77e72acb1086 Mon Sep 17 00:00:00 2001 From: praliptarajoo Date: Wed, 14 Feb 2024 12:52:05 +0530 Subject: [PATCH 1/2] fix: contributors page --- updateProject.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/updateProject.mjs b/updateProject.mjs index 6d0a7b68..8d29c875 100644 --- a/updateProject.mjs +++ b/updateProject.mjs @@ -126,6 +126,7 @@ async function getUpcomingProjects() { async function getContributorsList() { const githubApiUrl = "https://api.github.com/users/mindfiredigital/repos"; const githubToken = process.env.GITHUB_TOKEN; + console.log("my github token", githubToken); try { const github_response = await fetch(githubApiUrl, { From 0af2cad9a80ef59e469baf27d41c95c5057072c0 Mon Sep 17 00:00:00 2001 From: praliptarajoo Date: Wed, 14 Feb 2024 13:00:34 +0530 Subject: [PATCH 2/2] fix: contributors page --- updateProject.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/updateProject.mjs b/updateProject.mjs index 8d29c875..58de6a15 100644 --- a/updateProject.mjs +++ b/updateProject.mjs @@ -200,6 +200,7 @@ async function getContributorsList() { projectsJsonPath, JSON.stringify(sortedContributions, null, 2) ); + console.log("Contributors list updated successfully."); } catch (error) { console.log(error); }