Skip to content

Commit 17610bb

Browse files
build(release): compiled action for 1.2.3
[skip ci]
1 parent 2fbe0fe commit 17610bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dist/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -30432,7 +30432,7 @@ module.exports = new Type('tag:yaml.org,2002:omap', {
3043230432
Object.defineProperty(exports, "__esModule", { value: true });
3043330433
exports.VERSION = void 0;
3043430434
// The version is set automatically before publish to npm
30435-
exports.VERSION = "12.1.4";
30435+
exports.VERSION = "12.2.1";
3043630436
//# sourceMappingURL=version.js.map
3043730437

3043830438
/***/ }),
@@ -84760,7 +84760,7 @@ class DataHandler {
8476084760
case "message":
8476184761
if (this.redis.listeners("message").length > 0) {
8476284762
// Check if there're listeners to avoid unnecessary `toString()`.
84763-
this.redis.emit("message", reply[1].toString(), reply[2].toString());
84763+
this.redis.emit("message", reply[1].toString(), reply[2] ? reply[2].toString() : '');
8476484764
}
8476584765
this.redis.emit("messageBuffer", reply[1], reply[2]);
8476684766
break;
@@ -86137,7 +86137,7 @@ class ManifestCreation {
8613786137
}
8613886138
get createAppUrl() {
8613986139
const githubHost = process.env.GHE_HOST || `github.com`;
86140-
return `${process.env.GHE_PROTOCOL || "https"}://${githubHost}/settings/apps/new`;
86140+
return `${process.env.GHE_PROTOCOL || "https"}://${githubHost}${process.env.GH_ORG ? "/organizations/".concat(process.env.GH_ORG) : ""}/settings/apps/new`;
8614186141
}
8614286142
}
8614386143
exports.ManifestCreation = ManifestCreation;

0 commit comments

Comments
 (0)