Closed lilincmu closed 1 year ago
Fix the json field name of Project in GitLab's PushEventPayload and TagEventPayload. The json field name should be lowercase project according to https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html#push-events.
Project
PushEventPayload
TagEventPayload
project
{ "object_kind": "push", "event_name": "push", ... "project":{ "id": 15, ... }, ... }
Would love to have this fixed since some services we're interacting with expect the project field to exist and throw error when we use this library.
Fix the json field name of
Project
in GitLab'sPushEventPayload
andTagEventPayload
. The json field name should be lowercaseproject
according to https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html#push-events.Would love to have this fixed since some services we're interacting with expect the
project
field to exist and throw error when we use this library.