@jonit-dev/night-watch-cli 1.8.14-beta.3 → 1.8.14-beta.4
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.
|
@@ -858,6 +858,17 @@ while IFS=$'\t' read -r pr_number pr_branch pr_labels; do
|
|
|
858
858
|
continue
|
|
859
859
|
fi
|
|
860
860
|
|
|
861
|
+
if [ -n "${TARGET_PR}" ] && [ "${pr_number}" = "${TARGET_PR}" ] && [ -n "${NW_TARGET_LOCAL_CHECK_COMMAND:-}" ]; then
|
|
862
|
+
if [ "${local_ready_for_review_label_present}" -eq 1 ]; then
|
|
863
|
+
log "INFO: PR #${pr_number} (${pr_branch}) failed merge-gate local checks; removing stale ${READY_FOR_REVIEW_LABEL} label"
|
|
864
|
+
clear_ready_for_human_review_label "${pr_number}"
|
|
865
|
+
fi
|
|
866
|
+
log "INFO: PR #${pr_number} (${pr_branch}) failed merge-gate local checks; targeted repair required"
|
|
867
|
+
NEEDS_WORK=1
|
|
868
|
+
PRS_NEEDING_WORK="${PRS_NEEDING_WORK} #${pr_number}"
|
|
869
|
+
continue
|
|
870
|
+
fi
|
|
871
|
+
|
|
861
872
|
if has_ready_for_human_review_marker "${all_comments}" "${current_head_sha}"; then
|
|
862
873
|
SKIPPED_ALREADY_REVIEWED_CURRENT_HEAD=1
|
|
863
874
|
log "INFO: PR #${pr_number} (${pr_branch}) is already marked ready for human review at head ${current_head_sha:0:12}; skipping repeat automated review"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jonit-dev/night-watch-cli",
|
|
3
|
-
"version": "1.8.14-beta.
|
|
3
|
+
"version": "1.8.14-beta.4",
|
|
4
4
|
"description": "AI agent that implements your specs, opens PRs, and reviews code overnight. Queue GitHub issues or PRDs, wake up to pull requests.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|