-
Notifications
You must be signed in to change notification settings - Fork 18
/
taskcluster-hook.json
60 lines (60 loc) · 1.39 KB
/
taskcluster-hook.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
{
"schedule": ["0 0 0 * * *"],
"metadata": {
"description": "",
"name": "stab-crashes run",
"owner": "[email protected]"
},
"task": {
"created": {
"$fromNow": "0 seconds"
},
"deadline": {
"$fromNow": "2 hours"
},
"expires": {
"$fromNow": "1 month"
},
"extra": {},
"metadata": {
"description": "",
"name": "stab-crashes run",
"owner": "[email protected]",
"source": "https://github.com/mozilla/stab-crashes"
},
"payload": {
"artifacts": {},
"cache": {},
"capabilities": {},
"env": {},
"features": {
"taskclusterProxy": true
},
"command": [
"/bin/sh",
"-lcxe",
"git clone --quiet https://github.com/mozilla/stab-crashes.git && cd stab-crashes && /bin/sh -lcxe ./run.sh"
],
"image": "python:3.9",
"maxRunTime": 7200
},
"priority": "normal",
"provisionerId": "proj-relman",
"retries": 5,
"routes": [
],
"schedulerId": "-",
"scopes": [
"assume:hook-id:project-relman/stab-crashes",
"secrets:get:project/relman/stab-crashes/production"
],
"tags": {},
"workerType": "ci"
},
"triggerSchema": {
"additionalProperties": false,
"type": "object"
}
}