Skip to content

Commit

Permalink
fix: correct MergeGroupChecksRequestedEvent schema title (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Aug 8, 2022
1 parent d1d975e commit e4bef38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
"organization": { "$ref": "common/organization.schema.json" }
},
"additionalProperties": false,
"title": "merg group checks requested event"
"title": "merge group checks requested event"
}
4 changes: 2 additions & 2 deletions payload-types/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export type MemberEvent =
| MemberEditedEvent
| MemberRemovedEvent;
export type MembershipEvent = MembershipAddedEvent | MembershipRemovedEvent;
export type MergeGroupEvent = MergGroupChecksRequestedEvent;
export type MergeGroupEvent = MergeGroupChecksRequestedEvent;
export type MetaEvent = MetaDeletedEvent;
export type WebhookEvents =
| (
Expand Down Expand Up @@ -3986,7 +3986,7 @@ export interface MembershipRemovedEvent {
organization: Organization;
installation?: InstallationLite;
}
export interface MergGroupChecksRequestedEvent {
export interface MergeGroupChecksRequestedEvent {
action: "checks_requested";
/**
* The merge group.
Expand Down

0 comments on commit e4bef38

Please sign in to comment.