37 lines
969 B
JSON
37 lines
969 B
JSON
{
|
|
"agentWorkflow": {
|
|
"enabled": true,
|
|
"version": "1.0.0",
|
|
"orchestratorUrl": "https://api.antigravity.ai/v1/workflows/trigger",
|
|
"webhookSecretName": "ANTIGRAVITY_AGENT_TOKEN",
|
|
"mappings": [
|
|
{
|
|
"trigger": "issue_labeled",
|
|
"labels": ["enhancement", "feature", "agent-resolve"],
|
|
"assignedAgent": "orchestrator",
|
|
"mode": "autonomous",
|
|
"createBranchPattern": "feature/issue-{issue_number}"
|
|
},
|
|
{
|
|
"trigger": "issue_labeled",
|
|
"labels": ["bug", "hotfix"],
|
|
"assignedAgent": "orchestrator",
|
|
"mode": "autonomous",
|
|
"createBranchPattern": "bugfix/issue-{issue_number}"
|
|
}
|
|
],
|
|
"verification": {
|
|
"requireBuild": true,
|
|
"runTests": true,
|
|
"buildScript": "npm run build",
|
|
"testScript": "npm test"
|
|
},
|
|
"pullRequest": {
|
|
"autoCreate": true,
|
|
"draft": false,
|
|
"assignee": "jannr",
|
|
"reviewers": []
|
|
}
|
|
}
|
|
}
|