-
Notifications
You must be signed in to change notification settings - Fork 147
/
webhookEvents.go
22 lines (21 loc) · 1.15 KB
/
webhookEvents.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package bitbucket
const (
RepoPushEvent string = "repo:push"
RepoForkEvent string = "repo:fork"
RepoUpdatedEvent string = "repo:updated"
RepoCommitCommentCreatedEvent string = "repo:commit_comment_created"
RepoCommitStatusCreatedEvent string = "repo:commit_status_created"
RepoCommitStatusUpdatedEvent string = "repo:commit_status_updated"
IssueCreatedEvent string = "issue:created"
IssueUpdatedEvent string = "issue:updated"
IssueCommentCreatedEvent string = "issue:comment_created"
PullRequestCreatedEvent string = "pullrequest:created"
PullRequestUpdatedEvent string = "pullrequest:updated"
PullRequestApprovedEvent string = "pullrequest:approved"
PullRequestUnapprovedEvent string = "pullrequest:unapproved"
PullRequestMergedEvent string = "pullrequest:fulfilled"
PullRequestDeclinedEvent string = "pullrequest:rejected"
PullRequestCommentCreatedEvent string = "pullrequest:comment_created"
PullRequestCommentUpdatedEvent string = "pullrequest:comment_updated"
PullRequestCommentDeletedEvent string = "pullrequest:comment_deleted"
)