webhook/src/main.ts

38 lines
1.2 KiB
TypeScript
Raw Normal View History

import * as core from '@actions/core';
import { http } from './http';
async function run() {
2020-08-27 10:23:33 +02:00
const url = core.getInput('url') ? core.getInput('url') : (process.env.url ? process.env.url : '');
const headers = core.getInput('headers') ? core.getInput('headers') : (process.env.headers ? process.env.headers : null);
const body = core.getInput('body') ? core.getInput('body') : (process.env.body ? process.env.body : null);
if (!url) {
// validate a url
core.setFailed('A url is required to run this action.');
return;
}
// initial info
2020-08-26 02:25:43 +02:00
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)
2020-08-26 02:25:43 +02:00
.then((res) => {
// output the status
core.setOutput('statusCode', res.status);
// report on the status code
core.info(`Received status code: ${res.status}`);
2020-08-26 02:38:11 +02:00
// debug end
core.info((new Date()).toTimeString());
})
.catch((err) => {
// set the action to failed
core.setFailed(`Received status code: ${err.status}`);
2020-08-26 02:25:43 +02:00
});
}
run();