create-node-lib 2.16.5 → 2.16.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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [2.16.6](https://github.com/lirantal/create-node-lib/compare/v2.16.5...v2.16.6) (2026-04-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add MERGE_READY_STATE to automerge workflow ([a05f4c9](https://github.com/lirantal/create-node-lib/commit/a05f4c9ad230c4dec7409c6920fff748ddad08c0))
7
+ * Add workflow step to create dependencies label ([7b47182](https://github.com/lirantal/create-node-lib/commit/7b471823aa122e181bd89ef9d3382a3e08c3fbd4))
8
+
1
9
  ## [2.16.5](https://github.com/lirantal/create-node-lib/compare/v2.16.4...v2.16.5) (2026-04-29)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.16.5",
3
+ "version": "2.16.6",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -33,6 +33,7 @@ jobs:
33
33
  GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
34
34
  # we only merge PRs with labels of "automerge"
35
35
  MERGE_LABELS: "automerge"
36
+ MERGE_READY_STATE: "clean,has_hooks,unknown"
36
37
  MERGE_REMOVE_LABELS: "automerge"
37
38
  MERGE_METHOD: "squash"
38
39
  MERGE_COMMIT_MESSAGE: "automatic"
@@ -24,3 +24,12 @@ jobs:
24
24
  --color "0075ca" \
25
25
  --description "Merge this PR automatically once checks pass" \
26
26
  --force
27
+ - name: Create dependencies label
28
+ env:
29
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ run: |
31
+ gh label create "dependencies" \
32
+ --repo "${{ github.repository }}" \
33
+ --color "0366d6" \
34
+ --description "Pull requests that update a dependency" \
35
+ --force