Skip to content

Commit

Permalink
chore: debug console
Browse files Browse the repository at this point in the history
  • Loading branch information
roseline124 committed Jun 26, 2024
1 parent 2a42f13 commit 2c92eca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ const reviewersFilePath = process.env.REVIEWERS_FILE as string;

async function notifySlack() {
try {
debug({ githubToken, slackToken, slackChannel, reviewersFilePath });
core.info(
JSON.stringify({
githubToken,
slackToken,
slackChannel,
reviewersFilePath,
})
);
core.info("Starting notifySlack function");

const reviewersYaml = await fs.readFile(reviewersFilePath, "utf8");
Expand Down

0 comments on commit 2c92eca

Please sign in to comment.