Adding merge_commit_sha to WebhookMergeRequestEventSchema (#3600)

Adding `merge_commit_sha` attribute to the WebhookMergeRequestEventSchema interface to match the actual payload that is being sent
This commit is contained in:
Ali Souidan 2024-06-12 16:41:31 +03:00 committed by GitHub
parent 272de6c4db
commit 12556891bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -325,6 +325,7 @@ export interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
draft: boolean;
first_contribution: boolean;
merge_status: string;
merge_commit_sha: string;
target_project_id: number;
description: string;
total_time_spent: number;