create-node-lib 2.9.12 → 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,17 @@
|
|
|
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
|
+
|
|
8
|
+
## [2.9.13](https://github.com/lirantal/create-node-lib/compare/v2.9.12...v2.9.13) (2026-03-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* links checker updates ([e50e0eb](https://github.com/lirantal/create-node-lib/commit/e50e0eb3c0509ee9508ceb7fb8ccb5041929f9c5))
|
|
14
|
+
|
|
1
15
|
## [2.9.12](https://github.com/lirantal/create-node-lib/compare/v2.9.11...v2.9.12) (2026-03-03)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -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"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
name: Links Checker
|
|
1
|
+
name: Links Checker
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
+
pull_request:
|
|
4
5
|
repository_dispatch:
|
|
5
6
|
workflow_dispatch:
|
|
6
7
|
schedule:
|
|
@@ -17,7 +18,9 @@ jobs:
|
|
|
17
18
|
|
|
18
19
|
- name: Link Checker
|
|
19
20
|
id: lychee
|
|
20
|
-
uses: lycheeverse/lychee-action@
|
|
21
|
+
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
|
|
22
|
+
with:
|
|
23
|
+
args: --verbose --config .github/.lychee.toml .
|
|
21
24
|
|
|
22
25
|
- name: Create Issue From File
|
|
23
26
|
if: env.lychee_exit_code != 0
|