-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
102 lines (102 loc) · 2.12 KB
/
Copy pathconfig.json
File metadata and controls
102 lines (102 loc) · 2.12 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"project_name": "showrunner",
"graph": {
"backend": "auto",
"db": ".showrunner/graph.db",
"br_db": null
},
"lock_root": null,
"resources": [
{
"name": "git-index",
"match": [
"\\bgit\\s+(merge|rebase|cherry-pick)\\b",
"showrunner\\s+integrate\\b"
],
"note": "the main checkout's index and HEAD. Integration rewinds a failed merge with `git reset --hard`; two integrations at once would rewind each other's work."
},
{
"name": "gh-issues",
"match": [
"\\bgh\\s+issue\\s+(close|edit|comment)\\b"
],
"note": "the GitHub issue tracker \u2014 one upstream that two Crawlers would interleave writes to."
}
],
"lanes": [
{
"name": "integration",
"lane": "serialized",
"resource": "git-index",
"match": {
"labels": [
"integration",
"release"
],
"title": "integrat|merge|release"
},
"model": "opus"
},
{
"name": "core",
"lane": "headless",
"match": {
"labels": [
"backend",
"core"
]
},
"model": "opus"
},
{
"name": "implementation",
"lane": "headless",
"match": {
"labels": [
"impl",
"docs",
"test",
"design"
]
},
"model": "sonnet"
}
],
"default_lane": "serialized",
"worktree_root": ".worktrees",
"scratch_root": ".showrunner/scratch",
"inject": [],
"checks": [
{
"name": "suite",
"cmd": "python3 test/run.py",
"failure_pattern": "^\\s*FAIL\\s+.*$"
},
{
"name": "prototype",
"cmd": "bash prototype/demo.sh",
"failure_pattern": "^\\s*FAIL\\s+.*$"
}
],
"collision": {
"extra_globs": [],
"always_serialize": [
"test/run.py",
"README.md",
"llms.txt",
"docs/*",
"prototype/README.md"
]
},
"shared_state": [],
"dispatch": {
"default_model": "sonnet",
"models_by_lane": {
"serialized": "opus"
},
"chat": {
"enabled": false,
"channel_prefix": "showrunner"
}
}
}