We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa78c0e commit 81c2aa5Copy full SHA for 81c2aa5
index.js
@@ -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