@semantic-release/github 8.0.0 → 8.0.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/README.md +7 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -57,9 +57,15 @@ When creating the token, the **minimum required scopes** are:
|
|
|
57
57
|
- [`repo`](https://github.com/settings/tokens/new?scopes=repo) for a private repository
|
|
58
58
|
- [`public_repo`](https://github.com/settings/tokens/new?scopes=public_repo) for a public repository
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
_Notes on GitHub Actions:_ You can use the default token which is provided in the secret _GITHUB_TOKEN_. However releases done with this token will NOT trigger release events to start other workflows.
|
|
61
61
|
If you have actions that trigger on newly created releases, please use a generated token for that and store it in your repository's secrets (any other name than GITHUB_TOKEN is fine).
|
|
62
62
|
|
|
63
|
+
When using the _GITHUB_TOKEN_, the **minimum required permissions** are:
|
|
64
|
+
|
|
65
|
+
- `contents: write` to be able to publish a GitHub release
|
|
66
|
+
- `issues: write` to be able to comment on released issues
|
|
67
|
+
- `pull-requests: write` to be able to comment on released pull requests
|
|
68
|
+
|
|
63
69
|
### Environment variables
|
|
64
70
|
|
|
65
71
|
| Variable | Description |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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": "8.0.
|
|
4
|
+
"version": "8.0.3",
|
|
5
5
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
6
6
|
"ava": {
|
|
7
7
|
"files": [
|
|
@@ -24,26 +24,26 @@
|
|
|
24
24
|
"dir-glob": "^3.0.0",
|
|
25
25
|
"fs-extra": "^10.0.0",
|
|
26
26
|
"globby": "^11.0.0",
|
|
27
|
-
"http-proxy-agent": "^
|
|
27
|
+
"http-proxy-agent": "^5.0.0",
|
|
28
28
|
"https-proxy-agent": "^5.0.0",
|
|
29
29
|
"issue-parser": "^6.0.0",
|
|
30
30
|
"lodash": "^4.17.4",
|
|
31
|
-
"mime": "^
|
|
31
|
+
"mime": "^3.0.0",
|
|
32
32
|
"p-filter": "^2.0.0",
|
|
33
33
|
"p-retry": "^4.0.0",
|
|
34
|
-
"url-join": "^
|
|
34
|
+
"url-join": "^5.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"ava": "
|
|
38
|
-
"clear-module": "4.1.
|
|
37
|
+
"ava": "4.1.0",
|
|
38
|
+
"clear-module": "4.1.2",
|
|
39
39
|
"codecov": "3.8.3",
|
|
40
|
-
"nock": "13.
|
|
40
|
+
"nock": "13.2.4",
|
|
41
41
|
"nyc": "15.1.0",
|
|
42
42
|
"proxy": "1.0.2",
|
|
43
43
|
"proxyquire": "2.1.3",
|
|
44
|
-
"semantic-release": "
|
|
44
|
+
"semantic-release": "19.0.2",
|
|
45
45
|
"server-destroy": "1.0.1",
|
|
46
|
-
"sinon": "
|
|
46
|
+
"sinon": "13.0.1",
|
|
47
47
|
"tempy": "1.0.1",
|
|
48
48
|
"xo": "0.36.1"
|
|
49
49
|
},
|