mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 14:09:39 +00:00
Update index.js
This commit is contained in:
5
index.js
5
index.js
@ -1,12 +1,13 @@
|
||||
const core = require('@actions/core');
|
||||
const github = require('@actions/core');
|
||||
|
||||
|
||||
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);
|
||||
const context = github.context;
|
||||
core.debug(`The webhook payload: ${context.payload}`);
|
||||
} catch (error) {
|
||||
core.setFailed(error.message);
|
||||
}
|
||||
|
Reference in New Issue
Block a user