From a1320cdc58052dafc32d3b9467d7ec9de8a82f02 Mon Sep 17 00:00:00 2001 From: cestlive Date: Wed, 25 Sep 2024 09:59:10 +0800 Subject: [PATCH] add MergeStatus filed to struct MergeEvent --- event_webhook_types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/event_webhook_types.go b/event_webhook_types.go index c4a8e4aeb..7cce8b520 100644 --- a/event_webhook_types.go +++ b/event_webhook_types.go @@ -721,6 +721,10 @@ type MergeEvent struct { Previous int `json:"previous"` Current int `json:"current"` } `json:"last_edited_by_id"` + MergeStatus struct { + Previous string `json:"previous"` + Current string `json:"current"` + }`json:"merge_status"` MilestoneID struct { Previous int `json:"previous"` Current int `json:"current"`