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

Commit 0e5aa7c

Browse files
feat: build for release
1 parent d42a0bd commit 0e5aa7c

File tree

366 files changed

+688
-256519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+688
-256519
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"auto-cancel-redundant-job","sha":"baa5dfc3d6fa46fd6c49cd3d9c111e2e3abbb9af","ref":"refs/tags/v1.2.9","tagName":"v1.2.9","branch":"gh-actions","tags":["v1.2.9","v1.2","v1"],"updated_at":"2020-06-23T12:25:58.941Z"}
1+
{"owner":"technote-space","repo":"auto-cancel-redundant-job","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v1.2.10","branch":"gh-actions","tags":["test/v1.2.10","test/v1.2","test/v1"],"updated_at":"2020-07-01T11:04:18.754Z"}

lib/utils/workflow.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,14 @@ exports.getWorkflowRuns = (workflowId, logger, octokit, context) => __awaiter(vo
3131
logger.log('target branch: %s', logger.c(branch, { color: 'green' }));
3232
options.branch = branch;
3333
}
34-
return (yield octokit.paginate(octokit.actions.listWorkflowRuns.endpoint.merge(options))).filter(misc_1.isNotExcludeRun);
34+
return (yield octokit.paginate(octokit.actions.listWorkflowRuns,
35+
// eslint-disable-next-line no-warning-comments
36+
// TODO: remove ts-ignore after fixed types (https://github.com/octokit/types.ts/issues/122)
37+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
38+
// @ts-ignore
39+
options)).map(run => run).filter(misc_1.isNotExcludeRun);
3540
});
41+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3642
exports.cancelWorkflowRun = (runId, octokit, context) => __awaiter(void 0, void 0, void 0, function* () {
3743
return octokit.actions.cancelWorkflowRun(Object.assign(Object.assign({}, context.repo), { 'run_id': runId }));
3844
});

node_modules/.yarn-integrity

Lines changed: 121 additions & 137 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-6 KB
Binary file not shown.

node_modules/@actions/github/lib/context.d.ts

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/github/lib/context.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/github/lib/context.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/github/package.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/core/README.md

Lines changed: 36 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)