node-package-release-action 2.1.17 → 2.1.18
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 +2 -2
- package/dist/getOctokit.d.ts +5 -6
- package/dist/getOctokit.js +9 -6
- package/dist/index.js +2 -1
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
- uses: actions/checkout@v3
|
|
25
25
|
|
|
26
26
|
- id: release
|
|
27
|
-
uses: CatChen/node-package-release-action@
|
|
27
|
+
uses: CatChen/node-package-release-action@v2
|
|
28
28
|
with:
|
|
29
29
|
github-token: ${{ secrets.GITHUB_TOKEN }} # optional
|
|
30
30
|
directory: './' #optional
|
|
@@ -149,7 +149,7 @@ on:
|
|
|
149
149
|
with:
|
|
150
150
|
ref: 'main'
|
|
151
151
|
|
|
152
|
-
- uses: CatChen/node-package-release-action@
|
|
152
|
+
- uses: CatChen/node-package-release-action@v2
|
|
153
153
|
with:
|
|
154
154
|
release-type: ${{ inputs.release-type || 'patch' }}
|
|
155
155
|
prerelease: ${{ inputs.prerelease || false }}
|
package/dist/getOctokit.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
1
|
+
import { type Octokit } from '@octokit/core/dist-types/index.js';
|
|
2
|
+
import { type PaginateInterface } from '@octokit/plugin-paginate-rest';
|
|
3
|
+
import { type Api } from '@octokit/plugin-rest-endpoint-methods/dist-types/types.js';
|
|
4
|
+
export declare function getOctokit(githubToken: string): Octokit & Api & {
|
|
5
|
+
paginate: PaginateInterface;
|
|
7
6
|
};
|
package/dist/getOctokit.js
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getOctokit = getOctokit;
|
|
4
|
-
const
|
|
5
|
-
const utils_1 = require("@actions/github/lib/utils");
|
|
4
|
+
const utils_js_1 = require("@actions/github/lib/utils.js");
|
|
6
5
|
const plugin_retry_1 = require("@octokit/plugin-retry");
|
|
7
6
|
const plugin_throttling_1 = require("@octokit/plugin-throttling");
|
|
8
|
-
function getOctokit() {
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const octokit = new Octokit((0, utils_1.getOctokitOptions)(githubToken, {
|
|
7
|
+
function getOctokit(githubToken) {
|
|
8
|
+
const Octokit = utils_js_1.GitHub.plugin(plugin_throttling_1.throttling, plugin_retry_1.retry);
|
|
9
|
+
const octokit = new Octokit((0, utils_js_1.getOctokitOptions)(githubToken, {
|
|
12
10
|
throttle: {
|
|
13
11
|
onRateLimit: (retryAfter, options, _, retryCount) => {
|
|
14
12
|
if (retryCount === 0) {
|
|
@@ -35,5 +33,10 @@ function getOctokit() {
|
|
|
35
33
|
doNotRetry: ['429'],
|
|
36
34
|
},
|
|
37
35
|
}));
|
|
36
|
+
octokit.graphql = octokit.graphql.defaults({
|
|
37
|
+
headers: {
|
|
38
|
+
'X-GitHub-Next-Global-ID': 1,
|
|
39
|
+
},
|
|
40
|
+
});
|
|
38
41
|
return octokit;
|
|
39
42
|
}
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,8 @@ const setVersion_1 = require("./setVersion");
|
|
|
19
19
|
const updateTags_1 = require("./updateTags");
|
|
20
20
|
const DEFAULT_VERSION = '0.1.0';
|
|
21
21
|
async function run() {
|
|
22
|
-
const
|
|
22
|
+
const githubToken = (0, core_1.getInput)('github-token');
|
|
23
|
+
const octokit = (0, getOctokit_1.getOctokit)(githubToken);
|
|
23
24
|
await (0, configGit_1.configGit)(octokit);
|
|
24
25
|
(0, core_1.startGroup)('Fetch every git tag');
|
|
25
26
|
await (0, fetchEverything_1.fetchEverything)();
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-package-release-action",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.18",
|
|
4
4
|
"description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
|
|
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",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"@octokit/webhooks-definitions": "^3.67.3",
|
|
34
34
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.1",
|
|
35
35
|
"@types/glob": "^8.0.0",
|
|
36
|
-
"@types/node": "^
|
|
36
|
+
"@types/node": "^22.0.0",
|
|
37
37
|
"@types/semver": "^7.3.13",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
39
|
-
"@typescript-eslint/parser": "^
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
39
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
40
40
|
"@vercel/ncc": "^0.38.0",
|
|
41
41
|
"eslint": "^9.1.1",
|
|
42
42
|
"eslint-config-prettier": "^9.0.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"lint-staged": "^15.0.2",
|
|
47
47
|
"pinst": "^3.0.0",
|
|
48
48
|
"prettier": "^3.0.2",
|
|
49
|
-
"typescript": "^5.
|
|
50
|
-
"typescript-eslint": "^
|
|
49
|
+
"typescript": "^5.6.3",
|
|
50
|
+
"typescript-eslint": "^8.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@actions/core": "^1.10.0",
|
|
@@ -59,8 +59,7 @@
|
|
|
59
59
|
"semver": "^7.3.8"
|
|
60
60
|
},
|
|
61
61
|
"resolutions": {
|
|
62
|
-
"strip-ansi": "6.0.1"
|
|
63
|
-
"@octokit/core": "^6.0.0"
|
|
62
|
+
"strip-ansi": "6.0.1"
|
|
64
63
|
},
|
|
65
64
|
"lint-staged": {
|
|
66
65
|
"*.(ts,js)": "yarn lint --fix",
|