2019-06-26 14:22:50 -04:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
|
|
|
|
|
|
async function run() {
|
|
|
|
|
const myInput = core.getInput('myInput');
|
2019-06-26 14:35:18 -04:00
|
|
|
core.debug(`Hello ${myInput}`);
|
2019-06-26 14:22:50 -04:00
|
|
|
}
|
|
|
|
|
|
2019-06-26 14:35:18 -04:00
|
|
|
run();
|