Skip to content

Commit

Permalink
atlasexec: add BITBUCKET for trigger and scm (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
giautm authored Dec 10, 2024
1 parent 25a157f commit f0115dd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions atlasexec/atlas.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,15 @@ const (
TriggerTypeTerraform TriggerType = "TERRAFORM"
TriggerTypeGithubAction TriggerType = "GITHUB_ACTION"
TriggerTypeCircleCIOrb TriggerType = "CIRCLECI_ORB"
TriggerTypeGitlab TriggerType = "GITLAB"
TriggerTypeBitbucket TriggerType = "BITBUCKET"
)

// SCMType values.
const (
SCMTypeGithub SCMType = "GITHUB"
SCMTypeGitlab SCMType = "GITLAB"
SCMTypeGithub SCMType = "GITHUB"
SCMTypeGitlab SCMType = "GITLAB"
SCMTypeBitbucket SCMType = "BITBUCKET"
)

// ExecutionOrder values.
Expand Down

0 comments on commit f0115dd

Please sign in to comment.