mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-23 08:31:29 +00:00
feat: support check_suite webhook events
This commit is contained in:
parent
7179a35457
commit
fb9550b94d
6 changed files with 115 additions and 2 deletions
|
|
@ -44,6 +44,10 @@ function extractBranch(event: WebhookEvent): string | undefined {
|
|||
const wf = event.payload.workflow_run as { head_branch?: string } | undefined;
|
||||
return wf?.head_branch;
|
||||
}
|
||||
if (event.event === "check_suite") {
|
||||
const suite = event.payload.check_suite as { head_branch?: string } | undefined;
|
||||
return suite?.head_branch;
|
||||
}
|
||||
if (event.event === "commit_comment") {
|
||||
const comment = event.payload.comment as { position?: number | null } | undefined;
|
||||
if (comment?.position != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue