We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ac857e + 0af2cad commit 8a773d0Copy full SHA for 8a773d0
updateProject.mjs
@@ -126,6 +126,7 @@ async function getUpcomingProjects() {
126
async function getContributorsList() {
127
const githubApiUrl = "https://api.github.com/users/mindfiredigital/repos";
128
const githubToken = process.env.GITHUB_TOKEN;
129
+ console.log("my github token", githubToken);
130
131
try {
132
const github_response = await fetch(githubApiUrl, {
@@ -199,6 +200,7 @@ async function getContributorsList() {
199
200
projectsJsonPath,
201
JSON.stringify(sortedContributions, null, 2)
202
);
203
+ console.log("Contributors list updated successfully.");
204
} catch (error) {
205
console.log(error);
206
}
0 commit comments