@codedrifters/configulator 0.0.307 → 0.0.308
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +33 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +33 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -18338,7 +18338,39 @@ var prReviewBundle = {
|
|
|
18338
18338
|
}
|
|
18339
18339
|
],
|
|
18340
18340
|
skills: [reviewPrSkill, reviewPrsSkill],
|
|
18341
|
-
subAgents: [prReviewerSubAgent]
|
|
18341
|
+
subAgents: [prReviewerSubAgent],
|
|
18342
|
+
labels: [
|
|
18343
|
+
{
|
|
18344
|
+
name: "type:pr-review",
|
|
18345
|
+
color: "5319E7",
|
|
18346
|
+
description: "PR review tasks"
|
|
18347
|
+
},
|
|
18348
|
+
{
|
|
18349
|
+
name: "origin:issue-worker",
|
|
18350
|
+
color: "5319E7",
|
|
18351
|
+
description: "PR opened by the issue-worker agent"
|
|
18352
|
+
},
|
|
18353
|
+
{
|
|
18354
|
+
name: "review:auto-ok",
|
|
18355
|
+
color: "0E8A16",
|
|
18356
|
+
description: "Force auto-merge regardless of policy"
|
|
18357
|
+
},
|
|
18358
|
+
{
|
|
18359
|
+
name: "review:human-required",
|
|
18360
|
+
color: "D93F0B",
|
|
18361
|
+
description: "Force human review regardless of policy"
|
|
18362
|
+
},
|
|
18363
|
+
{
|
|
18364
|
+
name: "review:awaiting-human",
|
|
18365
|
+
color: "FBCA04",
|
|
18366
|
+
description: "Reviewer handed off; awaiting human merge decision"
|
|
18367
|
+
},
|
|
18368
|
+
{
|
|
18369
|
+
name: "review:fixing",
|
|
18370
|
+
color: "D4C5F9",
|
|
18371
|
+
description: "Short-lived lease while issue-worker applies feedback fixes"
|
|
18372
|
+
}
|
|
18373
|
+
]
|
|
18342
18374
|
};
|
|
18343
18375
|
|
|
18344
18376
|
// src/agent/bundles/projen.ts
|