From 0f81d95fdcfce56bc235127359955f3d149754c5 Mon Sep 17 00:00:00 2001 From: Simon Davis Date: Tue, 7 Mar 2023 12:48:11 -0800 Subject: [PATCH] prettier --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index f31af70..6cde74a 100644 --- a/src/index.js +++ b/src/index.js @@ -8,7 +8,7 @@ async function main() { const slackToken = core.getInput("slack_token"); const slackChannel = core.getInput("slack_channel"); - const [org, repo] = process.env.GITHUB_REPOSITORY.split('/'); + const [org, repo] = process.env.GITHUB_REPOSITORY.split("/"); const octokit = github.getOctokit(githubToken); @@ -43,7 +43,7 @@ async function main() { core.setFailed(`Getting search results failed with error ${error}`); } - searchResults = searchResults.filter(member => member.count > 0); + searchResults = searchResults.filter((member) => member.count > 0); searchResults.sort((a, b) => { const nameA = a.member.toUpperCase();