create-node-lib 2.16.5 → 2.16.7

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.7](https://github.com/lirantal/create-node-lib/compare/v2.16.6...v2.16.7) (2026-05-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Simplify condition for automerge job ([2bc7720](https://github.com/lirantal/create-node-lib/commit/2bc7720f7e78c883633d1a5bd36debdebfca2ce4))
7
+
8
+ ## [2.16.6](https://github.com/lirantal/create-node-lib/compare/v2.16.5...v2.16.6) (2026-04-30)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Add MERGE_READY_STATE to automerge workflow ([a05f4c9](https://github.com/lirantal/create-node-lib/commit/a05f4c9ad230c4dec7409c6920fff748ddad08c0))
14
+ * Add workflow step to create dependencies label ([7b47182](https://github.com/lirantal/create-node-lib/commit/7b471823aa122e181bd89ef9d3382a3e08c3fbd4))
15
+
1
16
  ## [2.16.5](https://github.com/lirantal/create-node-lib/compare/v2.16.4...v2.16.5) (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.5",
3
+ "version": "2.16.7",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -19,9 +19,6 @@ on:
19
19
  jobs:
20
20
  automerge:
21
21
  runs-on: ubuntu-latest
22
- if: >
23
- github.event_name != 'check_suite' ||
24
- github.event.check_suite.pull_requests[0] != null
25
22
  permissions:
26
23
  contents: write
27
24
  pull-requests: write
@@ -33,6 +30,7 @@ jobs:
33
30
  GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
34
31
  # we only merge PRs with labels of "automerge"
35
32
  MERGE_LABELS: "automerge"
33
+ MERGE_READY_STATE: "clean,has_hooks,unknown"
36
34
  MERGE_REMOVE_LABELS: "automerge"
37
35
  MERGE_METHOD: "squash"
38
36
  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