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
GitInformationServiceURLstring`help:"URL of the git information service." default:"https://git-info.deplo.io" env:"GIT_INFORMATION_SERVICE_URL" hidden:""`
49
50
SkipRepoAccessCheckbool`help:"Skip the git repository access check" default:"false"`
DeleteWorkerJob*string`help:"Delete a worker job by name"`
42
+
DeleteScheduledJob*string`help:"Delete a scheduled job by name"`
41
43
RetryBuild*bool`help:"Retries build for the application if set to true." placeholder:"false"`
42
44
GitInformationServiceURLstring`help:"URL of the git information service." default:"https://git-info.deplo.io" env:"GIT_INFORMATION_SERVICE_URL" hidden:""`
43
45
SkipRepoAccessCheckbool`help:"Skip the git repository access check" default:"false"`
@@ -91,6 +93,13 @@ type workerJob struct {
91
93
Size*string`help:"Size of the worker (defaults to \"${app_default_size}\")." placeholder:"${app_default_size}"`
92
94
}
93
95
96
+
typescheduledJobstruct {
97
+
Command*string`help:"Command to execute to start the scheduled job." placeholder:"\"bundle exec rails runner\""`
98
+
Name*string`help:"Name of the scheduled job job to add." placeholder:"scheduled-1"`
99
+
Size*string`help:"Size (resources) of the scheduled job (defaults to \"${app_default_size}\")." placeholder:"${app_default_size}"`
100
+
Schedule*string`help:"Cron notation string for the scheduled job (defaults to \"* * * * *\")." placeholder:"* * * * *"`
0 commit comments