8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
|
|
import * as core from '@actions/core';
|
||
|
|
|
||
|
|
async function run() {
|
||
|
|
const myInput = core.getInput('myInput');
|
||
|
|
core.debug(`Hello ${myInput}`)
|
||
|
|
}
|
||
|
|
|
||
|
|
run();
|