workflow-ai 1.0.18 → 1.0.19
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/package.json
CHANGED
|
@@ -216,8 +216,13 @@ function autoCorrectTickets() {
|
|
|
216
216
|
condition: (status) => status === 'failed',
|
|
217
217
|
toDir: BACKLOG_DIR,
|
|
218
218
|
reason: 'review failed'
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
condition: (status) => status === null,
|
|
222
|
+
toDir: BACKLOG_DIR,
|
|
223
|
+
reason: 'no review'
|
|
219
224
|
}
|
|
220
|
-
// passed
|
|
225
|
+
// passed — не перемещаем
|
|
221
226
|
]);
|
|
222
227
|
|
|
223
228
|
// Правила для review/
|