Skip to content

Commit

Permalink
chore: sorting commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Jul 10, 2024
1 parent c0a6cff commit 798f58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/handlers/issue-comment-created.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default async function issueCommentCreated(context: GitHubContext<"issue_
}
}
await context.octokit.issues.createComment({
body: comments.join("\n"),
body: comments.sort().join("\n"),
issue_number: context.payload.issue.number,
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
Expand Down

0 comments on commit 798f58b

Please sign in to comment.