mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-10 08:17:10 +02:00
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>
23 lines
1.2 KiB
Go
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"
|
|
)
|