Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
breathingdust committed Mar 7, 2023
1 parent b08f0f8 commit 0f81d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 0f81d95

Please sign in to comment.