accept-to-ship-action 0.6.4 → 0.6.6
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 +4 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -51,6 +51,9 @@ jobs:
|
|
|
51
51
|
contains(github.event.workflow_run.pull_requests.*.base.ref, 'main')
|
|
52
52
|
}}
|
|
53
53
|
runs-on: ubuntu-latest
|
|
54
|
+
permissions:
|
|
55
|
+
pull-requests: write
|
|
56
|
+
contents: write
|
|
54
57
|
steps:
|
|
55
58
|
- uses: actions/checkout@v3
|
|
56
59
|
|
|
@@ -60,7 +63,7 @@ jobs:
|
|
|
60
63
|
merge-method: merge # optional
|
|
61
64
|
timeout: 0 # optional
|
|
62
65
|
checks-watch-interval: 10 # optional
|
|
63
|
-
fail-if-timeout: false #
|
|
66
|
+
fail-if-timeout: false # optional
|
|
64
67
|
request-zero-accept-zero: false # optional
|
|
65
68
|
custom-hashtag: '#accept2ship' #optional
|
|
66
69
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accept-to-ship-action",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "rm -rf dist && yarn tsc",
|
|
10
|
-
"bundle": "rm -rf bundle && yarn ncc build src/index.ts --
|
|
10
|
+
"bundle": "rm -rf bundle && yarn ncc build src/index.ts --source-map --license licenses.txt --out bundle",
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"lint": "eslint -c eslint.config.js",
|
|
13
13
|
"prepublishOnly": "pinst --disable && yarn build",
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
"@typescript-eslint/parser": "^8.0.0",
|
|
35
35
|
"@vercel/ncc": "^0.38.1",
|
|
36
36
|
"eslint": "^9.3.0",
|
|
37
|
-
"eslint-config-prettier": "^
|
|
37
|
+
"eslint-config-prettier": "^10.0.1",
|
|
38
38
|
"eslint-plugin-prettier": "^5.0.0",
|
|
39
39
|
"husky": "^9.0.11",
|
|
40
|
+
"is-ci": "^4.1.0",
|
|
40
41
|
"lint-staged": "^15.2.5",
|
|
41
42
|
"pinst": "^3.0.0",
|
|
42
43
|
"prettier": "^3.3.2",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"dependencies": {
|
|
47
48
|
"@actions/core": "^1.10.0",
|
|
48
49
|
"@actions/github": "^6.0.0",
|
|
49
|
-
"@octokit/plugin-retry": "^
|
|
50
|
+
"@octokit/plugin-retry": "^7.1.2",
|
|
50
51
|
"@octokit/plugin-throttling": "^9.3.0",
|
|
51
52
|
"@octokit/webhooks-definitions": "^3.67.3"
|
|
52
53
|
},
|