mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-09-04 21:46:59 +08:00
Allow optional headers & body
This commit is contained in:
Vendored
+2
-2
@@ -44,8 +44,8 @@ function run() {
|
||||
var url, headers, body;
|
||||
return __generator(this, function (_c) {
|
||||
url = core.getInput('url');
|
||||
headers = (_a = core.getInput('headers')) !== null && _a !== void 0 ? _a : '';
|
||||
body = (_b = core.getInput('body')) !== null && _b !== void 0 ? _b : '';
|
||||
headers = (_a = core.getInput('headers')) !== null && _a !== void 0 ? _a : null;
|
||||
body = (_b = core.getInput('body')) !== null && _b !== void 0 ? _b : null;
|
||||
core.info("Sending webhook request to " + url);
|
||||
core.debug((new Date()).toTimeString());
|
||||
http_1.http.make(url, headers, body)
|
||||
|
||||
Reference in New Issue
Block a user