Merge branch 'master' of github.com:actions/hello-world-javascript-action

This commit is contained in:
Rachael Sewell
2019-08-06 21:37:58 -07:00

View File

@ -1,15 +1,13 @@
const core = require('@actions/core');
const github = require('@actions/core');
const github = require('@actions/github');
async function run() {
try {
try {
const nameToGreet = core.getInput('who-to-greet');
core.debug(`Hello ${nameToGreet}!`);
console.log(`Hello ${nameToGreet}!`);
const time = (new Date()).toTimeString();
core.setOutput("time", time);
} catch (error) {
const payload = JSON.stringify(github.context.payload, undefined, 2)
console.log(`The event payload: ${payload}`);
} catch (error) {
core.setFailed(error.message);
}
}
run();