Skip to content

Commit

Permalink
Fixes linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Jul 22, 2024
1 parent 496ec66 commit 2fad4b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/features/hooks/data/GitHubHookHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default class GitHubHookHandler {
async handle(req: NextRequest): Promise<void> {
await this.webhooks.verifyAndReceive({
id: req.headers.get("X-GitHub-Delivery") as string,
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
name: req.headers.get("X-GitHub-Event") as any,
payload: await req.text(),
signature: req.headers.get("X-Hub-Signature-256") as string,
Expand Down

0 comments on commit 2fad4b3

Please sign in to comment.