From 52f5c4592cbbf2e4dde3b35ad42f4e7475ad52df Mon Sep 17 00:00:00 2001 From: R Date: Thu, 16 Jun 2022 22:57:19 +0200 Subject: [PATCH] fix: allow TimeoutMinutes to be expression (#1217) --- pkg/model/workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/model/workflow.go b/pkg/model/workflow.go index 55b80fc..7d0e9e9 100644 --- a/pkg/model/workflow.go +++ b/pkg/model/workflow.go @@ -321,7 +321,7 @@ type Step struct { Env yaml.Node `yaml:"env"` With map[string]string `yaml:"with"` ContinueOnError bool `yaml:"continue-on-error"` - TimeoutMinutes int64 `yaml:"timeout-minutes"` + TimeoutMinutes string `yaml:"timeout-minutes"` } // String gets the name of step