Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

add MergeStatus filed to struct MergeEvent #2016

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions event_webhook_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down