@semantic-release/github 9.2.1 → 9.2.3
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/lib/definitions/errors.js +1 -1
- package/package.json +34 -10
|
@@ -170,7 +170,7 @@ export function EGHNOPERMISSION({ owner, repo }) {
|
|
|
170
170
|
"README.md#github-authentication",
|
|
171
171
|
)}) configured in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable must allows to push to the repository ${owner}/${repo}.
|
|
172
172
|
|
|
173
|
-
Please make sure the GitHub user associated with the token is an [owner](https://help.github.com/articles/permission-levels-for-a-user-account-repository/#owner-access-on-a-repository-owned-by-a-user-account) or a [collaborator](https://help.github.com/articles/permission-levels-for-a-user-account-repository/#collaborator-access-on-a-repository-owned-by-a-user-account) if the
|
|
173
|
+
Please make sure the GitHub user associated with the token is an [owner](https://help.github.com/articles/permission-levels-for-a-user-account-repository/#owner-access-on-a-repository-owned-by-a-user-account) or a [collaborator](https://help.github.com/articles/permission-levels-for-a-user-account-repository/#collaborator-access-on-a-repository-owned-by-a-user-account) if the repository belong to a user account or has [write permissions](https://help.github.com/articles/managing-team-access-to-an-organization-repository) if the repository [belongs to an organization](https://help.github.com/articles/repository-permission-levels-for-an-organization).`,
|
|
174
174
|
};
|
|
175
175
|
}
|
|
176
176
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-release/github",
|
|
3
3
|
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
|
|
4
|
-
"version": "9.2.
|
|
4
|
+
"version": "9.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
7
7
|
"ava": {
|
|
8
8
|
"files": [
|
|
9
|
-
"test/**/*.test.js"
|
|
9
|
+
"test/**/*.test.js",
|
|
10
|
+
"!test/integration.test.js"
|
|
10
11
|
],
|
|
11
12
|
"nodeArguments": [
|
|
12
13
|
"--no-warnings"
|
|
@@ -17,7 +18,8 @@
|
|
|
17
18
|
},
|
|
18
19
|
"contributors": [
|
|
19
20
|
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
20
|
-
"Gregor Martynus (https://twitter.com/gr2m)"
|
|
21
|
+
"Gregor Martynus (https://twitter.com/gr2m)",
|
|
22
|
+
"Matt Travi <npm@travi.org> (https://matt.travi.org/)"
|
|
21
23
|
],
|
|
22
24
|
"dependencies": {
|
|
23
25
|
"@octokit/core": "^5.0.0",
|
|
@@ -28,7 +30,7 @@
|
|
|
28
30
|
"aggregate-error": "^5.0.0",
|
|
29
31
|
"debug": "^4.3.4",
|
|
30
32
|
"dir-glob": "^3.0.1",
|
|
31
|
-
"globby": "^
|
|
33
|
+
"globby": "^14.0.0",
|
|
32
34
|
"http-proxy-agent": "^7.0.0",
|
|
33
35
|
"https-proxy-agent": "^7.0.0",
|
|
34
36
|
"issue-parser": "^6.0.0",
|
|
@@ -41,10 +43,15 @@
|
|
|
41
43
|
"ava": "5.3.1",
|
|
42
44
|
"c8": "8.0.1",
|
|
43
45
|
"cpy": "10.1.0",
|
|
46
|
+
"cz-conventional-changelog": "3.3.0",
|
|
44
47
|
"fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
|
|
48
|
+
"lockfile-lint": "4.12.1",
|
|
49
|
+
"ls-engines": "0.9.0",
|
|
50
|
+
"npm-run-all2": "6.1.1",
|
|
45
51
|
"prettier": "3.0.3",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
52
|
+
"publint": "0.2.5",
|
|
53
|
+
"semantic-release": "22.0.7",
|
|
54
|
+
"sinon": "17.0.1",
|
|
48
55
|
"tempy": "3.1.0"
|
|
49
56
|
},
|
|
50
57
|
"engines": {
|
|
@@ -80,6 +87,19 @@
|
|
|
80
87
|
],
|
|
81
88
|
"all": true
|
|
82
89
|
},
|
|
90
|
+
"config": {
|
|
91
|
+
"commitizen": {
|
|
92
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"lockfile-lint": {
|
|
96
|
+
"path": "package-lock.json",
|
|
97
|
+
"type": "npm",
|
|
98
|
+
"validate-https": true,
|
|
99
|
+
"allowed-hosts": [
|
|
100
|
+
"npm"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
83
103
|
"peerDependencies": {
|
|
84
104
|
"semantic-release": ">=20.1.0"
|
|
85
105
|
},
|
|
@@ -93,10 +113,14 @@
|
|
|
93
113
|
},
|
|
94
114
|
"scripts": {
|
|
95
115
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
96
|
-
"lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
|
|
97
|
-
"lint:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
116
|
+
"lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
|
|
117
|
+
"lint:prettier:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
|
|
118
|
+
"lint:lockfile": "lockfile-lint",
|
|
119
|
+
"lint:engines": "ls-engines",
|
|
120
|
+
"lint:publish": "publint --strict",
|
|
121
|
+
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
|
|
122
|
+
"test:unit": "c8 ava --verbose",
|
|
123
|
+
"test:integration": "ava --verbose test/integration.test.js"
|
|
100
124
|
},
|
|
101
125
|
"renovate": {
|
|
102
126
|
"extends": [
|