Skip to content

Commit 81c2aa5

Browse files
authored
Create index.js
1 parent fa78c0e commit 81c2aa5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const core = require('@actions/core');
2+
3+
try {
4+
const rts = core.getInput('rts');
5+
console.log(`Hello, ${rts}`);
6+
} catch (error) {
7+
core.setFailed(error.message);
8+
}

0 commit comments

Comments
 (0)