create-node-lib 2.9.13 → 2.9.14

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,10 @@
1
+ ## [2.9.14](https://github.com/lirantal/create-node-lib/compare/v2.9.13...v2.9.14) (2026-03-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Modify automerge.yml to add 'dependencies' label ([d169a3a](https://github.com/lirantal/create-node-lib/commit/d169a3abaa4e9831d522a7a0509a1badc12e77c2))
7
+
1
8
  ## [2.9.13](https://github.com/lirantal/create-node-lib/compare/v2.9.12...v2.9.13) (2026-03-08)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.13",
3
+ "version": "2.9.14",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -16,10 +16,12 @@ on:
16
16
  check_suite:
17
17
  types:
18
18
  - completed
19
- status: {}
20
19
  jobs:
21
20
  automerge:
22
21
  runs-on: ubuntu-latest
22
+ if: >
23
+ github.event_name != 'check_suite' ||
24
+ github.event.check_suite.pull_requests[0] != null
23
25
  permissions:
24
26
  contents: write
25
27
  pull-requests: write
@@ -30,10 +32,10 @@ jobs:
30
32
  env:
31
33
  GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
32
34
  # we only merge PRs with labels of "dependencies"
33
- MERGE_LABELS: "automerge"
35
+ MERGE_LABELS: "automerge,dependencies"
34
36
  MERGE_REMOVE_LABELS: "automerge"
35
37
  MERGE_METHOD: "squash"
36
38
  MERGE_COMMIT_MESSAGE: "automatic"
37
39
  MERGE_FORKS: "false"
38
40
  MERGE_REQUIRED_APPROVALS: "0"
39
- UPDATE_METHOD: "rebase"
41
+ UPDATE_METHOD: "rebase"