@nanobpm/nano-workforce 0.178.1 → 0.178.2

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.
@@ -3,17 +3,18 @@ name: Renovate
3
3
  # Self-hosted Renovate (issue #406). renovate.json declares the policy — auto-merge
4
4
  # non-major @nanobpm/* updates once CI is green, majors need a human — but nothing was
5
5
  # ever running it, so the config sat dormant and nwf stayed pinned to old @nanobpm/urban.
6
- # This workflow IS the runner: on a schedule (and on demand) it opens update PRs and, on a
7
- # later pass once the PR's CI is green, merges the automerge ones itself. We self-host via
8
- # GitHub Actions rather than the Mend hosted app so the whole capability is in-repo and
9
- # reproducible, with no external app-install state to drift.
6
+ # This workflow IS the runner: on a schedule (and on demand) it opens update PRs and enables
7
+ # GitHub-native auto-merge on the automerge ones, which ENQUEUES them into main's merge queue so
8
+ # they land when the queue's speculative checks pass. We self-host via GitHub Actions rather than
9
+ # the Mend hosted app so the whole capability is in-repo and reproducible, with no external
10
+ # app-install state to drift.
10
11
  on:
11
12
  schedule:
12
- # Every 3 hours. Renovate needs to run periodically not just to DISCOVER new versions,
13
- # but to COME BACK and merge automerge PRs: renovate.json sets platformAutomerge:false
14
- # (main is unprotected, so GitHub-native auto-merge is unavailable), which means Renovate
15
- # performs the merge itself on a subsequent run once the PR's branch status is green.
16
- # A few-hourly cadence keeps that merge latency low without burning Actions minutes.
13
+ # Every 3 hours. Renovate needs to run periodically to DISCOVER new versions and open/refresh
14
+ # update PRs. Once main went behind a merge queue, Renovate no longer self-merges; it enables
15
+ # GitHub-native auto-merge (platformAutomerge:true) which enqueues the PR, and the queue lands it
16
+ # when its checks pass. A few-hourly cadence keeps discovery latency low without burning Actions
17
+ # minutes.
17
18
  - cron: "0 */3 * * *"
18
19
  # On-demand runs for immediate pickup (e.g. right after a new urban publishes) and for
19
20
  # debugging with a raised log level.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.178.2](https://github.com/nanobpm/nano-workforce/compare/v0.178.1...v0.178.2) (2026-09-03)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **ci:** enqueue Renovate @nanobpm/* automerge via the merge queue ([#720](https://github.com/nanobpm/nano-workforce/issues/720)) ([a788c3c](https://github.com/nanobpm/nano-workforce/commit/a788c3cc664ee7324c0706bf5182d180b8a17c0e)), closes [#421](https://github.com/nanobpm/nano-workforce/issues/421)
6
+
1
7
  ## [0.178.1](https://github.com/nanobpm/nano-workforce/compare/v0.178.0...v0.178.1) (2026-09-03)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-workforce",
3
- "version": "0.178.1",
3
+ "version": "0.178.2",
4
4
  "description": "Nano Workforce — an Agent Graph Orchestration application for Agentic SDLC: durable BPMN processes that coordinate a graph of AI agents across the software delivery lifecycle.",
5
5
  "type": "module",
6
6
  "main": "main.ts",
@@ -64,7 +64,7 @@
64
64
  "lint:fix": "biome check --write app operations workers pages components scripts e2e main.ts"
65
65
  },
66
66
  "dependencies": {
67
- "@nanobpm/agentic": "^0.11.0",
67
+ "@nanobpm/agentic": "^0.12.0",
68
68
  "@nanobpm/urban": "^0.90.0",
69
69
  "bpmn-auto-layout": "^2.0.0-alpha.2"
70
70
  },
package/renovate.json CHANGED
@@ -3,11 +3,11 @@
3
3
  "extends": ["config:recommended"],
4
4
  "packageRules": [
5
5
  {
6
- "description": "Auto-merge non-major @nanobpm/* updates once CI is green. These are first-party packages we publish from nano-ide; CI (typecheck + test) is the gate. For 0.x pins a caret range locks the minor, so Renovate's range bump is what actually pulls a new minor through; automerging it keeps nwf on the latest urban without manual PRs. platformAutomerge is off because main is unprotected, so Renovate waits for its own green branch status before merging.",
6
+ "description": "Auto-merge non-major @nanobpm/* updates once CI is green. These are first-party packages we publish from nano-ide; CI (typecheck + test) is the gate. For 0.x pins a caret range locks the minor, so Renovate's range bump is what actually pulls a new minor through; automerging it keeps nwf on the latest agentic/urban without manual PRs. platformAutomerge is ON because main is now protected by an active ruleset with a GitHub merge queue (merge_queue rule): a direct self-merge is rejected by the queue, so Renovate must enable GitHub-native auto-merge, which ENQUEUES the PR and lets it land when the queue's speculative checks pass. (Historically this was false when main was unprotected; leaving it false silently wedged green update PRs open — e.g. the agentic 0.11->0.12 bump sat unmerged for weeks.)",
7
7
  "matchPackageNames": ["/^@nanobpm//"],
8
8
  "matchUpdateTypes": ["minor", "patch"],
9
9
  "automerge": true,
10
- "platformAutomerge": false
10
+ "platformAutomerge": true
11
11
  },
12
12
  {
13
13
  "description": "Major @nanobpm/* updates may be breaking - require a human to review and merge.",