-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
56 lines (56 loc) · 1.43 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"cron": [
{
"command": "bundle exec rake repositories:sync_least_recent",
"schedule": "*/10 * * * *"
},
{
"command": "bundle exec rake repositories:sync_extra_details",
"schedule": "*/5 * * * *"
},
{
"command": "bundle exec rake repositories:sync_recently_active",
"schedule": "*/15 * * * *"
},
{
"command": "bundle exec rake hosts:sync_owners",
"schedule": "*/10 * * * *"
},
{
"command": "bundle exec rake repositories:parse_missing_dependencies",
"schedule": "*/15 * * * *"
},
{
"command": "bundle exec rake repositories:download_tags",
"schedule": "*/20 * * * *"
},
{
"command": "bundle exec rake repositories:crawl",
"schedule": "*/5 * * * *"
},
{
"command": "bundle exec rake packages:sync_registries",
"schedule": "0 8 * * *"
},
{
"command": "bundle exec rake packages:sync_packages",
"schedule": "0 9 * * *"
},
{
"command": "bundle exec rake hosts:check_github_tokens",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rake sitemap:refresh",
"schedule": "0 6 * * *"
},
{
"command": "bundle exec rake repositories:fetch_dependencies_for_github_actions_tags",
"schedule": "0 4 * * *"
},
{
"command": "bundle exec rake repositories:clean_up_sidekiq_unique_jobs",
"schedule": "0 0 * * 0"
}
]
}