mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 01:58:18 +00:00
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package command
|
|
|
|
import (
|
|
"github.com/runatlantis/atlantis/server/events/models"
|
|
"github.com/runatlantis/atlantis/server/logging"
|
|
tally "github.com/uber-go/tally/v4"
|
|
)
|
|
|
|
// Trigger represents the how the command was triggered
|
|
type Trigger int
|
|
|
|
const (
|
|
// Commands that are automatically triggered (ie. automatic plans)
|
|
AutoTrigger Trigger = iota
|
|
|
|
// Commands that are triggered by comments (ie. atlantis plan)
|
|
CommentTrigger
|
|
)
|
|
|
|
// Context represents the context of a command that should be executed
|
|
// for a pull request.
|
|
type Context struct {
|
|
// HeadRepo is the repository that is getting merged into the BaseRepo.
|
|
// If the pull request branch is from the same repository then HeadRepo will
|
|
// be the same as BaseRepo.
|
|
// See https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges
|
|
HeadRepo models.Repo
|
|
Pull models.PullRequest
|
|
Scope tally.Scope
|
|
// User is the user that triggered this command.
|
|
User models.User
|
|
Log logging.SimpleLogging
|
|
|
|
// Current PR state
|
|
PullRequestStatus models.PullReqStatus
|
|
|
|
PullStatus *models.PullStatus
|
|
|
|
// PolicySet is the policy set to target (if specified) for the approve_policies command.
|
|
PolicySet string
|
|
|
|
// ClearPolicyApproval is true if approval should be cleared on specified policies.
|
|
ClearPolicyApproval bool
|
|
|
|
Trigger Trigger
|
|
|
|
// API is true if plan/apply by API endpoints
|
|
API bool
|
|
}
|