forked from forgejo/forgejo
Fix incorrect HookEventType
of pull request review comments (#23650)
`HookEventType` of pull request review comments should be `HookEventPullRequestReviewComment` but some event types are `HookEventPullRequestComment` now.
This commit is contained in:
parent
4acf0214b1
commit
9e04627aca
4 changed files with 5 additions and 5 deletions
|
@ -223,7 +223,7 @@ func (m *MSTeamsPayload) Review(p *api.PullRequestPayload, event webhook_module.
|
|||
color = greenColor
|
||||
case webhook_module.HookEventPullRequestReviewRejected:
|
||||
color = redColor
|
||||
case webhook_module.HookEventPullRequestComment:
|
||||
case webhook_module.HookEventPullRequestReviewComment:
|
||||
color = greyColor
|
||||
default:
|
||||
color = yellowColor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue