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