claude-task-worker 0.66.0 → 0.68.0
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/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3581,9 +3581,11 @@ var createUiDesignWorker = async (opts = {}) => {
|
|
|
3581
3581
|
console.log(`[create-ui-design] #${issueNumber}: cc-need-human-check present, skip cc-ui-design-pr-created`);
|
|
3582
3582
|
return false;
|
|
3583
3583
|
}
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3584
|
+
for (const label of ["cc-ui-design-ready", "cc-exec-issue"]) {
|
|
3585
|
+
if (await hasLabel("issue", issueNumber, label)) {
|
|
3586
|
+
console.log(`[create-ui-design] #${issueNumber}: design not needed (${label}), completing`);
|
|
3587
|
+
return;
|
|
3588
|
+
}
|
|
3587
3589
|
}
|
|
3588
3590
|
const branch = designBranchName(issueNumber);
|
|
3589
3591
|
const prNumber = await findPrNumberByHeadRef(branch, "open");
|