ghorg/vendor/github.com/ktrysmt/go-bitbucket/webhookEvents.go
dependabot[bot] 1e251d5183
Bump github.com/ktrysmt/go-bitbucket from 0.9.50 to 0.9.54 (#250)
Bumps [github.com/ktrysmt/go-bitbucket](https://github.com/ktrysmt/go-bitbucket) from 0.9.50 to 0.9.54.
- [Release notes](https://github.com/ktrysmt/go-bitbucket/releases)
- [Commits](https://github.com/ktrysmt/go-bitbucket/compare/v0.9.50...v0.9.54)

---
updated-dependencies:
- dependency-name: github.com/ktrysmt/go-bitbucket
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-01 09:25:51 -07:00

23 lines
1.2 KiB
Go

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"
)