-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.json
More file actions
48 lines (48 loc) · 1.24 KB
/
Copy pathopencode.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"citriage": {
"type": "local",
"command": [
"uv", "run", "--directory",
"/Users/xlisp/PyPro/opencode-cicd-agent",
"cicd-citriage"
],
"enabled": true,
"environment": {
"GITHUB_TOKEN": "{env:GITHUB_TOKEN}",
"GITHUB_API_URL": "{env:GITHUB_API_URL}",
"CICD_DEFAULT_REPO": "{env:CICD_DEFAULT_REPO}"
}
},
"release": {
"type": "local",
"command": [
"uv", "run", "--directory",
"/Users/xlisp/PyPro/opencode-cicd-agent",
"cicd-release"
],
"enabled": true,
"environment": {
"JENKINS_URL": "{env:JENKINS_URL}",
"JENKINS_USER": "{env:JENKINS_USER}",
"JENKINS_TOKEN": "{env:JENKINS_TOKEN}",
"CICD_ALLOW_TRIGGER": "{env:CICD_ALLOW_TRIGGER}"
}
},
"secscan": {
"type": "local",
"command": [
"uv", "run", "--directory",
"/Users/xlisp/PyPro/opencode-cicd-agent",
"cicd-secscan"
],
"enabled": true,
"environment": {
"SONAR_URL": "{env:SONAR_URL}",
"SONAR_TOKEN": "{env:SONAR_TOKEN}",
"SONAR_PROJECT_KEY": "{env:SONAR_PROJECT_KEY}"
}
}
}
}