From e35ab25fedb7c1ad6b1ab9184dea77a5ac1a05eb 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) --- act/model/workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/act/model/workflow.go b/act/model/workflow.go index 55b80fc3..7d0e9e91 100644 --- a/act/model/workflow.go +++ b/act/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