feat: warn about move from any variables to map variables (#1618)

This commit is contained in:
Pete Davison
2024-04-24 21:40:52 +01:00
committed by GitHub
parent a5b949f5dc
commit ddd9964db7
4 changed files with 22 additions and 12 deletions

View File

@@ -27,6 +27,7 @@ type Experiment struct {
var (
GentleForce Experiment
RemoteTaskfiles Experiment
AnyVariables Experiment
MapVariables Experiment
)
@@ -34,6 +35,7 @@ func init() {
readDotEnv()
GentleForce = New("GENTLE_FORCE")
RemoteTaskfiles = New("REMOTE_TASKFILES")
AnyVariables = New("ANY_VARIABLES", "1", "2")
MapVariables = New("MAP_VARIABLES", "1", "2")
}