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 d42579c commit 9d863f2Copy full SHA for 9d863f2
.github/actions/echo-hello/index.js
@@ -1,7 +1,7 @@
1
const core = require('@actions/core');
2
3
try {
4
- const rts = core.getInput('rts');
+ const rts = process.env.rts;
5
console.log(`Hello, ${rts}`);
6
} catch (error) {
7
core.setFailed(error.message);
0 commit comments