Files
grafana/pkg/build/config/version_mode.go
Kevin Minehart d567f199dd CI: add the grabpl build-backend command into the repo (#52673)
* Move the grabpl build-backend command and clean it up a bit
2022-07-28 10:11:22 -04:00

14 lines
388 B
Go

package config
// VersionMode defines the source event that created a release or published version
type VersionMode string
const (
MainMode VersionMode = "main"
ReleaseMode VersionMode = "release"
BetaReleaseMode VersionMode = "beta"
TestReleaseMode VersionMode = "test"
ReleaseBranchMode VersionMode = "branch"
PullRequestMode VersionMode = "pull_request"
)