webhooks
webhooks copied to clipboard
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs
Add the required types and hooks for confidential comment events, and update the relevant fixtures with the latest GitLab examples. Note that the types can be differentiated using `event_type`, which...
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.
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. ``` { "object_kind": "push", "event_name": "push", ......
Update list of handled webhooks + fix some typos
Hello @Toshik1978 I'm working on Argo workflow to operate with Chinese code platform gitee, I just write a solution for it, please review my PR, thanks! PR #147
According to https://docs.gitlab.com/14.8/ee/user/project/integrations/webhook_events.html those event payloads don't exist, the logic to parse a `JobEvent` down into a `BuildEvent` actively removes fields like `PipelineID` from the payload.
I see #130 #81, but that PR had no progress for a long time. so I rewrite it to support gitea latest webhook. Closes #130
When an Installation webhook is triggered for deleting a github app, there is a slight difference in the format of payload. For a delete, the CreatedAt and UpdatedAt fields return...
I am not certain if this completely captures all the fields, but it captures all the fields GitHub is sending me. Tests updated and passing.