diff --git a/dist/37.index.js b/dist/37.index.js index 988f8deb..c349ca0a 100644 --- a/dist/37.index.js +++ b/dist/37.index.js @@ -449,5 +449,4 @@ async function toFormData(Body, ct) { /***/ }) }; -; -//# sourceMappingURL=37.index.js.map \ No newline at end of file +; \ No newline at end of file diff --git a/dist/http.js b/dist/http.js deleted file mode 100644 index 122b1240..00000000 --- a/dist/http.js +++ /dev/null @@ -1,32 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.http = void 0; -var fetch = require('node-fetch'); -var https = require('https'); -var Http = (function () { - function Http() { - } - Http.prototype.make = function (url, headers, body, ignoreCertificate) { - var _this = this; - return new Promise(function (resolve, reject) { - fetch(url, _this.getOptions('post', headers, body, ignoreCertificate)).then(function (res) { return resolve(res); }); - }); - }; - Http.prototype.getOptions = function (method, headers, body, ignoreCertificate) { - var options = { - headers: headers ? JSON.parse(headers) : {}, - method: method - }; - if (body) { - options.body = body; - } - if (ignoreCertificate) { - options.agent = new https.Agent({ rejectUnauthorized: false }); - } - options.headers['content-type'] = 'application/json'; - return options; - }; - return Http; -}()); -exports.http = new Http(); -//# sourceMappingURL=http.js.map \ No newline at end of file diff --git a/dist/http.js.map b/dist/http.js.map deleted file mode 100644 index f881bece..00000000 --- a/dist/http.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"http.js","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":";;;AAAA,IAAM,KAAK,GAAG,OAAO,CAAC,YAAY,CAAC,CAAA;AACnC,IAAI,KAAK,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;AAE5B;IAAA;IAyCA,CAAC;IAxCC,mBAAI,GAAJ,UACE,GAAW,EACX,OAAsB,EACtB,IAAmB,EACnB,iBAAiC;QAJnC,iBAYC;QANC,OAAO,IAAI,OAAO,CAAC,UAAC,OAAO,EAAE,MAAM;YACjC,KAAK,CACH,GAAG,EACH,KAAI,CAAC,UAAU,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,iBAAiB,CAAC,CAC1D,CAAC,IAAI,CAAC,UAAC,GAAa,IAAK,OAAA,OAAO,CAAC,GAAG,CAAC,EAAZ,CAAY,CAAC,CAAA;QACzC,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,yBAAU,GAAV,UACE,MAAc,EACd,OAAsB,EACtB,IAAmB,EACnB,iBAAiC;QAEjC,IAAM,OAAO,GAAQ;YACnB,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE;YAC3C,MAAM,QAAA;SACP,CAAA;QAED,IAAI,IAAI,EAAE;YAER,OAAO,CAAC,IAAI,GAAG,IAAI,CAAA;SACpB;QAED,IAAI,iBAAiB,EAAE;YAErB,OAAO,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,KAAK,CAAC,EAAC,kBAAkB,EAAE,KAAK,EAAC,CAAC,CAAA;SAC7D;QAGD,OAAO,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,kBAAkB,CAAA;QAEpD,OAAO,OAAO,CAAA;IAChB,CAAC;IACH,WAAC;AAAD,CAAC,AAzCD,IAyCC;AAEY,QAAA,IAAI,GAAG,IAAI,IAAI,EAAE,CAAA"} \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index f461731c..47c5ed5d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,146 +1,6 @@ -require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap +/******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 4319: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.http = void 0; -var fetch = __nccwpck_require__(4429); -var https = __nccwpck_require__(5687); -var Http = (function () { - function Http() { - } - Http.prototype.make = function (url, headers, body, ignoreCertificate) { - var _this = this; - return new Promise(function (resolve, reject) { - fetch(url, _this.getOptions('post', headers, body, ignoreCertificate)).then(function (res) { return resolve(res); }); - }); - }; - Http.prototype.getOptions = function (method, headers, body, ignoreCertificate) { - var options = { - headers: headers ? JSON.parse(headers) : {}, - method: method - }; - if (body) { - options.body = body; - } - if (ignoreCertificate) { - options.agent = new https.Agent({ rejectUnauthorized: false }); - } - options.headers['content-type'] = 'application/json'; - return options; - }; - return Http; -}()); -exports.http = new Http(); -//# sourceMappingURL=http.js.map - -/***/ }), - -/***/ 9496: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -var core = __nccwpck_require__(2186); -var http_1 = __nccwpck_require__(4319); -function run() { - return __awaiter(this, void 0, void 0, function () { - var url, headers, body, insecure; - return __generator(this, function (_a) { - url = core.getInput('url') - ? core.getInput('url') - : process.env.WEBHOOK_URL - ? process.env.WEBHOOK_URL - : ''; - headers = core.getInput('headers') - ? core.getInput('headers') - : process.env.headers - ? process.env.headers - : null; - body = core.getInput('body') - ? core.getInput('body') - : process.env.data - ? process.env.data - : null; - insecure = core.getInput('insecure') - ? core.getInput('insecure') == 'true' - : process.env.insecure - ? process.env.insecure == 'true' - : false; - if (!url) { - core.setFailed('A url is required to run this action.'); - throw new Error('A url is required to run this action.'); - } - core.info("Sending webhook request to ".concat(url)); - core.debug(new Date().toTimeString()); - http_1.http - .make(url, headers, body, insecure) - .then(function (res) { - if (res.status >= 400) { - error(res.status); - return; - } - core.info("Received status code: ".concat(res.status)); - core.info(new Date().toTimeString()); - }) - .catch(function (err) { - error(err.status); - return; - }); - return [2]; - }); - }); -} -function error(statusCode) { - core.setFailed("Received status code: ".concat(statusCode)); - throw new Error("Request failed with status code: ".concat(statusCode)); -} -run(); -//# sourceMappingURL=main.js.map - -/***/ }), - /***/ 7351: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -7068,6 +6928,142 @@ exports.debug = debug; // for test //# sourceMappingURL=ponyfill.es2018.js.map +/***/ }), + +/***/ 9047: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.http = void 0; +var fetch = __nccwpck_require__(4429); +var https = __nccwpck_require__(5687); +var Http = (function () { + function Http() { + } + Http.prototype.make = function (url, headers, body, ignoreCertificate) { + var _this = this; + return new Promise(function (resolve, reject) { + fetch(url, _this.getOptions('post', headers, body, ignoreCertificate)).then(function (res) { return resolve(res); }); + }); + }; + Http.prototype.getOptions = function (method, headers, body, ignoreCertificate) { + var options = { + headers: headers ? JSON.parse(headers) : {}, + method: method + }; + if (body) { + options.body = body; + } + if (ignoreCertificate) { + options.agent = new https.Agent({ rejectUnauthorized: false }); + } + options.headers['content-type'] = 'application/json'; + return options; + }; + return Http; +}()); +exports.http = new Http(); + + +/***/ }), + +/***/ 399: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +var core = __nccwpck_require__(2186); +var http_1 = __nccwpck_require__(9047); +function run() { + return __awaiter(this, void 0, void 0, function () { + var url, headers, body, insecure; + return __generator(this, function (_a) { + url = core.getInput('url') + ? core.getInput('url') + : process.env.WEBHOOK_URL + ? process.env.WEBHOOK_URL + : ''; + headers = core.getInput('headers') + ? core.getInput('headers') + : process.env.headers + ? process.env.headers + : null; + body = core.getInput('body') + ? core.getInput('body') + : process.env.data + ? process.env.data + : null; + insecure = core.getInput('insecure') + ? core.getInput('insecure') == 'true' + : process.env.insecure + ? process.env.insecure == 'true' + : false; + if (!url) { + core.setFailed('A url is required to run this action.'); + throw new Error('A url is required to run this action.'); + } + http_1.http + .make(url, headers, body, insecure) + .then(function (res) { + if (res.status >= 400) { + error(res.status); + return; + } + }) + .catch(function (err) { + error(err.status); + return; + }); + return [2]; + }); + }); +} +function error(statusCode) { + core.setFailed("Received status code: ".concat(statusCode)); + throw new Error("Request failed with status code: ".concat(statusCode)); +} +run(); + + /***/ }), /***/ 9491: @@ -10055,9 +10051,8 @@ function fixResponseChunkedTransferBadEnding(request, errorCallback) { /******/ // startup /******/ // Load entry module and return exports /******/ // This entry module is referenced by other modules so it can't be inlined -/******/ var __webpack_exports__ = __nccwpck_require__(9496); +/******/ var __webpack_exports__ = __nccwpck_require__(399); /******/ module.exports = __webpack_exports__; /******/ /******/ })() -; -//# sourceMappingURL=index.js.map \ No newline at end of file +; \ No newline at end of file diff --git a/dist/main.js b/dist/main.js deleted file mode 100644 index 2a0acb3a..00000000 --- a/dist/main.js +++ /dev/null @@ -1,94 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } -}; -Object.defineProperty(exports, "__esModule", { value: true }); -var core = require("@actions/core"); -var http_1 = require("./http"); -function run() { - return __awaiter(this, void 0, void 0, function () { - var url, headers, body, insecure; - return __generator(this, function (_a) { - url = core.getInput('url') - ? core.getInput('url') - : process.env.WEBHOOK_URL - ? process.env.WEBHOOK_URL - : ''; - headers = core.getInput('headers') - ? core.getInput('headers') - : process.env.headers - ? process.env.headers - : null; - body = core.getInput('body') - ? core.getInput('body') - : process.env.data - ? process.env.data - : null; - insecure = core.getInput('insecure') - ? core.getInput('insecure') == 'true' - : process.env.insecure - ? process.env.insecure == 'true' - : false; - if (!url) { - core.setFailed('A url is required to run this action.'); - throw new Error('A url is required to run this action.'); - } - core.info("Sending webhook request to ".concat(url)); - core.debug(new Date().toTimeString()); - http_1.http - .make(url, headers, body, insecure) - .then(function (res) { - if (res.status >= 400) { - error(res.status); - return; - } - core.info("Received status code: ".concat(res.status)); - core.info(new Date().toTimeString()); - }) - .catch(function (err) { - error(err.status); - return; - }); - return [2]; - }); - }); -} -function error(statusCode) { - core.setFailed("Received status code: ".concat(statusCode)); - throw new Error("Request failed with status code: ".concat(statusCode)); -} -run(); -//# sourceMappingURL=main.js.map \ No newline at end of file diff --git a/dist/main.js.map b/dist/main.js.map deleted file mode 100644 index f5445f01..00000000 --- a/dist/main.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,oCAAqC;AACrC,+BAA2B;AAE3B,SAAe,GAAG;;;;YACV,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;gBAC9B,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;gBACtB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW;oBACzB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW;oBACzB,CAAC,CAAC,EAAE,CAAA;YAEA,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC;gBACtC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC;gBAC1B,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO;oBACrB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO;oBACrB,CAAC,CAAC,IAAI,CAAA;YAEF,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;gBAChC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;gBACvB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI;oBAClB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI;oBAClB,CAAC,CAAC,IAAI,CAAA;YAEF,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;gBACxC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,MAAM;gBACrC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ;oBACtB,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,IAAI,MAAM;oBAChC,CAAC,CAAC,KAAK,CAAA;YAET,IAAI,CAAC,GAAG,EAAE;gBAER,IAAI,CAAC,SAAS,CAAC,uCAAuC,CAAC,CAAA;gBAEvD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAA;aACzD;YAGD,IAAI,CAAC,IAAI,CAAC,qCAA8B,GAAG,CAAE,CAAC,CAAA;YAG9C,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,EAAE,CAAC,YAAY,EAAE,CAAC,CAAA;YAGrC,WAAI;iBACD,IAAI,CAAC,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,CAAC;iBAClC,IAAI,CAAC,UAAA,GAAG;gBAEP,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,EAAE;oBAErB,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;oBACjB,OAAM;iBACP;gBAGD,IAAI,CAAC,IAAI,CAAC,gCAAyB,GAAG,CAAC,MAAM,CAAE,CAAC,CAAA;gBAGhD,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,YAAY,EAAE,CAAC,CAAA;YAEtC,CAAC,CAAC;iBACD,KAAK,CAAC,UAAA,GAAG;gBACR,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;gBACjB,OAAM;YACR,CAAC,CAAC,CAAA;;;;CACL;AAED,SAAS,KAAK,CAAC,UAAU;IAEvB,IAAI,CAAC,SAAS,CAAC,gCAAyB,UAAU,CAAE,CAAC,CAAA;IAErD,MAAM,IAAI,KAAK,CAAC,2CAAoC,UAAU,CAAE,CAAC,CAAA;AACnE,CAAC;AAED,GAAG,EAAE,CAAA"} \ No newline at end of file diff --git a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache index d425899f..b59dcff9 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache and b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/index.js.cache b/node_modules/@vercel/ncc/dist/ncc/index.js.cache index 9ae4d27f..dc29bf41 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/index.js.cache and b/node_modules/@vercel/ncc/dist/ncc/index.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache index 64ca9d8d..f5bcbd31 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache index c48064fc..48ddcb78 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache index b1a67a8d..739c6d65 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache differ diff --git a/package.json b/package.json index 40151982..9bdb9ca9 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Github Webhook Action", "main": "dist/main.js", "scripts": { - "build": "tsc", + "build": "tsc --build --clean && ncc build src/main.ts -o dist", "format": "prettier --write **/*.ts", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map" diff --git a/src/main.ts b/src/main.ts index 8ee7f6f9..d5650efd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -33,12 +33,6 @@ async function run() { throw new Error('A url is required to run this action.') } - // initial info - core.info(`Sending webhook request to ${url}`) - - // debug start - core.debug(new Date().toTimeString()) // debug is only output if you set the secret `ACTIONS_RUNNER_DEBUG` to true - // make the request http .make(url, headers, body, insecure) @@ -50,12 +44,6 @@ async function run() { return } - // report on the status code - core.info(`Received status code: ${res.status}`) - - // debug end - core.info(new Date().toTimeString()) - }) .catch(err => { error(err.status) @@ -70,4 +58,4 @@ function error(statusCode) { throw new Error(`Request failed with status code: ${statusCode}`) } -run() +run() \ No newline at end of file