We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 868c400 commit be92a20Copy full SHA for be92a20
index.js
@@ -4,10 +4,10 @@ const core = require("@actions/core");
4
const github = require("@actions/github");
5
6
try {
7
- const filename = core.getInput("filename");
8
- fs.promises.readFile(filename, "utf8").then((data) => {
9
- console.log(data);
10
- });
+ // const filename = core.getInput("filename");
+ // fs.promises.readFile(filename, "utf8").then((data) => {
+ // console.log(data);
+ // });
11
// `who-to-greet` input defined in action metadata file
12
const nameToGreet = core.getInput("who-to-greet");
13
console.log(`Hello ${nameToGreet}!`);
0 commit comments