-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
60 lines (60 loc) · 1.47 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
57
58
59
60
{
"cron": [
{
"command": "bundle exec rake issues:sync_recent",
"schedule": "*/10 * * * *"
},
{
"command": "bundle exec rake issues:sync_collabs",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake packages:sync_internal",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rake packages:find_missing_npm_packages",
"schedule": "0 1 * * *"
},
{
"command": "bundle exec rake packages:sync",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake issues:sync_daily",
"schedule": "0 7 * * *"
},
{
"command": "bundle exec rake search:run_all",
"schedule": "*/10 * * * *"
},
{
"command": "bundle exec rake packages:find_missing_package_repos",
"schedule": "0 6 * * *"
},
{
"command": "bundle exec rake packages:find_dependent_github_repos",
"schedule": "0 3 * * *"
},
{
"command": "bundle exec rake repositories:sync",
"schedule": "50 * * * *"
},
{
"command": "bundle exec rake repositories:discover_from_search_results",
"schedule": "0 4 * * *"
},
{
"command": "bundle exec rake repositories:recalculate_scores",
"schedule": "0 8 * * *"
},
{
"command": "bundle exec rake contributors:sync",
"schedule": "40 * * * *"
},
{
"command": "bundle exec rake repositories:sync_discovered",
"schedule": "30 * * * *"
}
]
}