File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -326,7 +326,9 @@ var (
326
326
RunAtStart bool
327
327
Schedule string
328
328
}{
329
- Schedule : "@every 10m" ,
329
+ Enabled : true ,
330
+ RunAtStart : false ,
331
+ Schedule : "@every 10m" ,
330
332
},
331
333
RepoHealthCheck : struct {
332
334
Enabled bool
@@ -335,15 +337,18 @@ var (
335
337
Timeout time.Duration
336
338
Args []string `delim:" "`
337
339
}{
338
- Schedule : "@every 24h" ,
339
- Timeout : 60 * time .Second ,
340
- Args : []string {},
340
+ Enabled : true ,
341
+ RunAtStart : false ,
342
+ Schedule : "@every 24h" ,
343
+ Timeout : 60 * time .Second ,
344
+ Args : []string {},
341
345
},
342
346
CheckRepoStats : struct {
343
347
Enabled bool
344
348
RunAtStart bool
345
349
Schedule string
346
350
}{
351
+ Enabled : true ,
347
352
RunAtStart : true ,
348
353
Schedule : "@every 24h" ,
349
354
},
@@ -353,6 +358,7 @@ var (
353
358
Schedule string
354
359
OlderThan time.Duration
355
360
}{
361
+ Enabled : true ,
356
362
RunAtStart : true ,
357
363
Schedule : "@every 24h" ,
358
364
OlderThan : 24 * time .Hour ,
You can’t perform that action at this time.
0 commit comments