Update index.js

This commit is contained in:
Rachael Sewell
2019-08-06 21:35:31 -07:00
committed by GitHub
parent c7b08592b7
commit 03771eb2d2

View File

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