You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/src/actions_exec.go
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -134,9 +134,12 @@ Format of the action JSON files:
134
134
var (
135
135
fileFlag=flagSet.String("f", "-", "The action file. If not given or '-' standard input is used. (Required)")
136
136
parallelismFlag=flagSet.Int("j", runtime.GOMAXPROCS(0), "The number of parallel jobs.")
137
-
cacheDirFlag=flagSet.String("cache", displayUserCacheDir, "Directory for caching results.")
138
-
keepLogsFlag=flagSet.Bool("keep-logs", false, "Do not remove execution log files when done.")
139
-
timeoutFlag=flagSet.Duration("timeout", defaultTimeout, "The maximum duration a single action run can take (excluding the building of Docker images).")
137
+
138
+
cacheDirFlag=flagSet.String("cache", displayUserCacheDir, "Directory for caching results.")
139
+
clearCacheFlag=flagSet.Bool("clear-cache", false, "Remove possibly cached results for an action before executing it.")
140
+
141
+
keepLogsFlag=flagSet.Bool("keep-logs", false, "Do not remove execution log files when done.")
142
+
timeoutFlag=flagSet.Duration("timeout", defaultTimeout, "The maximum duration a single action run can take (excluding the building of Docker images).")
140
143
141
144
createPatchSetFlag=flagSet.Bool("create-patchset", false, "Create a patch set from the produced set of patches. When the execution of the action fails in a single repository a prompt will ask to confirm or reject the patch set creation.")
142
145
forceCreatePatchSetFlag=flagSet.Bool("force-create-patchset", false, "Force creation of patch set from the produced set of patches, without asking for confirmation even when the execution of the action failed for a subset of repositories.")
@@ -196,9 +199,10 @@ Format of the action JSON files:
0 commit comments