mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 14:09:39 +00:00
Convert to use src and dist paths
This commit is contained in:
6
src/index.js
Normal file
6
src/index.js
Normal file
@ -0,0 +1,6 @@
|
||||
/**
|
||||
* The entrypoint for the action.
|
||||
*/
|
||||
const { run } = require('./main')
|
||||
|
||||
run()
|
30
src/main.js
Normal file
30
src/main.js
Normal file
@ -0,0 +1,30 @@
|
||||
const core = require('@actions/core')
|
||||
const github = require('@actions/github')
|
||||
|
||||
/**
|
||||
* The main function for the action.
|
||||
* @returns {Promise<void>} Resolves when the action is complete.
|
||||
*/
|
||||
async function run() {
|
||||
try {
|
||||
// The `who-to-greet` input is defined in action metadata file
|
||||
const whoToGreet = core.getInput('who-to-greet', { required: true })
|
||||
core.info(`Hello, ${whoToGreet}!`)
|
||||
|
||||
// Get the current time and set as an output
|
||||
const time = new Date().toTimeString()
|
||||
core.setOutput('time', time)
|
||||
|
||||
// Output the payload for debugging
|
||||
core.info(
|
||||
`The event payload: ${JSON.stringify(github.context.payload, null, 2)}`
|
||||
)
|
||||
} catch (error) {
|
||||
// Fail the workflow step if an error occurs
|
||||
core.setFailed(error.message)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
run
|
||||
}
|
Reference in New Issue
Block a user