@masslessai/push-todo 3.7.5 → 3.7.6
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/daemon.js +4 -0
- package/package.json +1 -1
package/lib/daemon.js
CHANGED
|
@@ -409,11 +409,15 @@ async function claimTask(displayNumber) {
|
|
|
409
409
|
return true;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
+
const suffix = getWorktreeSuffix();
|
|
413
|
+
const branch = `push-${displayNumber}-${suffix}`;
|
|
414
|
+
|
|
412
415
|
const payload = {
|
|
413
416
|
displayNumber,
|
|
414
417
|
status: 'running',
|
|
415
418
|
machineId,
|
|
416
419
|
machineName,
|
|
420
|
+
branch,
|
|
417
421
|
atomic: true
|
|
418
422
|
};
|
|
419
423
|
|