create-node-lib 2.8.0 → 2.9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -17,6 +17,11 @@ updates:
17
17
  schedule:
18
18
  interval: "weekly"
19
19
  open-pull-requests-limit: 10
20
+ # Use the 'dependencies' default label and add
21
+ # the 'automerge' one for automerge github action support
22
+ labels:
23
+ - "dependencies"
24
+ - "automerge"
20
25
  groups:
21
26
  # Production dependencies without breaking changes
22
27
  dependencies:
@@ -0,0 +1,39 @@
1
+ name: automerge
2
+ on:
3
+ pull_request:
4
+ types:
5
+ - labeled
6
+ - unlabeled
7
+ - synchronize
8
+ - opened
9
+ - edited
10
+ - ready_for_review
11
+ - reopened
12
+ - unlocked
13
+ pull_request_review:
14
+ types:
15
+ - submitted
16
+ check_suite:
17
+ types:
18
+ - completed
19
+ status: {}
20
+ jobs:
21
+ automerge:
22
+ runs-on: ubuntu-latest
23
+ permissions:
24
+ contents: write
25
+ pull-requests: write
26
+ steps:
27
+ - id: automerge
28
+ name: automerge
29
+ uses: "pascalgn/automerge-action@v0.16.4"
30
+ env:
31
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
32
+ # we only merge PRs with labels of "dependencies"
33
+ MERGE_LABELS: "automerge"
34
+ MERGE_REMOVE_LABELS: "automerge"
35
+ MERGE_METHOD: "squash"
36
+ MERGE_COMMIT_MESSAGE: "automatic"
37
+ MERGE_FORKS: "false"
38
+ MERGE_REQUIRED_APPROVALS: "0"
39
+ UPDATE_METHOD: "rebase"
@@ -24,6 +24,8 @@
24
24
  "removeComments": true,
25
25
  "moduleDetection": "force",
26
26
  "verbatimModuleSyntax": true,
27
+ "noUncheckedIndexedAccess": true,
28
+ "noImplicitOverride": true,
27
29
  },
28
30
  "include": [
29
31
  "src/**/*",