Initial cleanup

This commit is contained in:
Corey Butler
2019-09-02 16:11:57 -05:00
parent a4a60d0d53
commit 1abc96470f
8 changed files with 33 additions and 186 deletions

View File

@ -1,12 +0,0 @@
import * as core from '@actions/core';
async function run() {
try {
const myInput = core.getInput('myInput');
core.debug(`Hello ${myInput}`);
} catch (error) {
core.setFailed(error.message);
}
}
run();