create-node-lib 2.16.4 → 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,18 @@
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
+
9
+ ## [2.16.5](https://github.com/lirantal/create-node-lib/compare/v2.16.4...v2.16.5) (2026-04-29)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Simplify cooldown settings in dependabot.yml ([ea84937](https://github.com/lirantal/create-node-lib/commit/ea849374e41d47f306a8d14ef2cd703a6300bbb8))
15
+
1
16
  ## [2.16.4](https://github.com/lirantal/create-node-lib/compare/v2.16.3...v2.16.4) (2026-04-29)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.16.4",
3
+ "version": "2.16.6",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -10,9 +10,6 @@ updates:
10
10
  open-pull-requests-limit: 10
11
11
  cooldown:
12
12
  default-days: 7
13
- semver-major-days: 7
14
- semver-minor-days: 7
15
- semver-patch-days: 7
16
13
  # Use the 'dependencies' default label and add
17
14
  # the 'automerge' one for automerge github action support
18
15
  labels:
@@ -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