diff --git a/.gitignore b/.gitignore index 66fd13c..898c79d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,7 @@ # Dependency directories (remove the comment below to include it) # vendor/ + +# Editor files +.vscode +.idea diff --git a/act/action.go b/act/action.go index 1ff28be..13d2c6f 100644 --- a/act/action.go +++ b/act/action.go @@ -18,5 +18,6 @@ type Action struct { Metadata map[string]any `json:"metadata"` Sync bool `json:"sync"` Terminal bool `json:"terminal"` + Timeout int `json:"timeout"` Run ActionFunc `json:"-"` }