Skip to content
This repository was archived by the owner on May 15, 2021. It is now read-only.

Commit 0dce1d1

Browse files
feat: build for release
1 parent 1d2b58d commit 0dce1d1

File tree

32 files changed

+228
-99
lines changed

32 files changed

+228
-99
lines changed

build.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"auto-cancel-redundant-workflow","sha":"e0538fab0221e0310991732fe616eaf373a0e208","ref":"refs/tags/test/v1.7.4.782385974","tagName":"test/v1.7.4.782385974","branch":"gh-actions","tags":["test/v1.7.4.782385974","test/v1.7.4","test/v1.7","test/v1"],"updated_at":"2021-04-25T09:04:31.729Z"}
1+
{"owner":"technote-space","repo":"auto-cancel-redundant-workflow","sha":"f26bd35a337551fd412c12aff1b95f113e762314","ref":"refs/tags/v1.7.4","tagName":"v1.7.4","branch":"gh-actions","tags":["v1.7.4","v1.7","v1"],"updated_at":"2021-04-29T16:57:59.066Z"}

lib/utils/misc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exports.getIntervalMs = getIntervalMs;
2020
const isExcludeContext = (context) => github_action_helper_1.ContextHelper.isPush(context) && ((isExcludeTagPush() && github_action_helper_1.Utils.isTagRef(context)) ||
2121
(isExcludeMerged() && getMergeMessagePrefix().test(context.payload.head_commit.message)));
2222
exports.isExcludeContext = isExcludeContext;
23-
const isNotExcludeRun = (run) => !isExcludeMerged() || !getMergeMessagePrefix().test(run.head_commit.message);
23+
const isNotExcludeRun = (run) => { var _a, _b; return !isExcludeMerged() || !getMergeMessagePrefix().test((_b = (_a = run.head_commit) === null || _a === void 0 ? void 0 : _a.message) !== null && _b !== void 0 ? _b : ''); };
2424
exports.isNotExcludeRun = isNotExcludeRun;
2525
const getTargetRunId = (context) => parseNumber(core_1.getInput('TARGET_RUN_ID'), context.runId);
2626
exports.getTargetRunId = getTargetRunId;

node_modules/.yarn-integrity

+36-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-node/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-node/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-src/version.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-types/generated/types.d.ts

+106-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-types/version.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-web/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/dist-web/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/openapi-types/package.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-node/index.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-node/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/version.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.d.ts

+16-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types.d.ts

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/version.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-web/index.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/dist-web/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/package.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/dist-node/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/dist-src/VERSION.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/dist-types/VERSION.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/dist-web/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/package.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@technote-space/github-action-helper/dist/api-helper.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@technote-space/github-action-helper/dist/api-helper.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)