Skip to content

Commit 14d38ee

Browse files
feat: build for release
1 parent 3b70a4d commit 14d38ee

File tree

11 files changed

+91
-83
lines changed

11 files changed

+91
-83
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":"assign-author","sha":"9f08f7d276b0dfeada7ab552a2d46178af3279fb","ref":"refs/tags/test/v1.5.4.367321086","tagName":"test/v1.5.4.367321086","branch":"gh-actions","tags":["test/v1.5.4.367321086","test/v1.5.4","test/v1.5","test/v1"],"updated_at":"2020-11-17T03:17:15.713Z"}
1+
{"owner":"technote-space","repo":"assign-author","sha":"6745821551cd112d3ef35ea2499edaf0d244ab50","ref":"refs/tags/test/v1.5.4.375585988","tagName":"test/v1.5.4.375585988","branch":"gh-actions","tags":["test/v1.5.4.375585988","test/v1.5.4","test/v1.5","test/v1"],"updated_at":"2020-11-21T03:18:01.875Z"}

lib/process.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
1212
exports.execute = void 0;
1313
const context_1 = require("./utils/context");
1414
const github_1 = require("./utils/github");
15-
exports.execute = (logger, octokit, context) => __awaiter(void 0, void 0, void 0, function* () { return github_1.addAssignees(context_1.getAssignees(context), octokit, logger, context); });
15+
const execute = (logger, octokit, context) => __awaiter(void 0, void 0, void 0, function* () { return github_1.addAssignees(context_1.getAssignees(context), octokit, logger, context); });
16+
exports.execute = execute;

lib/utils/context.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const getCurrentAssignees = (context) => {
1111
}
1212
return false;
1313
};
14-
exports.getAssignees = (context) => {
14+
const getAssignees = (context) => {
1515
const sender = github_action_helper_1.ContextHelper.getSender(context);
1616
if (false === sender) {
1717
return false;
@@ -25,3 +25,4 @@ exports.getAssignees = (context) => {
2525
}
2626
return [sender];
2727
};
28+
exports.getAssignees = getAssignees;

lib/utils/github.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
1010
};
1111
Object.defineProperty(exports, "__esModule", { value: true });
1212
exports.addAssignees = void 0;
13-
exports.addAssignees = (assignees, octokit, logger, context) => __awaiter(void 0, void 0, void 0, function* () {
13+
const addAssignees = (assignees, octokit, logger, context) => __awaiter(void 0, void 0, void 0, function* () {
1414
if (false === assignees) {
1515
logger.warn('Invalid target.');
1616
return;
@@ -38,3 +38,4 @@ exports.addAssignees = (assignees, octokit, logger, context) => __awaiter(void 0
3838
}
3939
}
4040
});
41+
exports.addAssignees = addAssignees;

node_modules/.yarn-integrity

Lines changed: 53 additions & 52 deletions
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/package.json

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

node_modules/@technote-space/github-action-log-helper/package.json

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

node_modules/@types/node/README.md

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/@types/node/assert.d.ts

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

node_modules/@types/node/package.json

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

0 commit comments

Comments
 (0)