We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f327c52 commit acb2f3dCopy full SHA for acb2f3d
1 file changed
packages/web/src/app/api/(server)/webhook/route.ts
@@ -191,7 +191,7 @@ export const POST = async (request: NextRequest) => {
191
owner,
192
repo: repositoryName,
193
comment_id: body.comment.id,
194
- content: env.REVIEW_AGENT_ACK_REACTION as Parameters<typeof octokit.rest.reactions.createForIssueComment>[0]['content'],
+ content: env.REVIEW_AGENT_ACK_REACTION as "-1" | "+1" | "laugh" | "confused" | "heart" | "hooray" | "rocket" | "eyes",
195
});
196
} catch (error) {
197
logger.warn(`Failed to add acknowledgment reaction to GitHub comment: ${error}`);
0 commit comments