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 1be7d89 commit ada6d47Copy full SHA for ada6d47
.github/actions/joke-action/main.js
@@ -0,0 +1,10 @@
1
+const getJoke = require("./joke");
2
+const core = require("@actions/core");
3
+
4
+async function run() {
5
+ const joke = await getJoke();
6
+ console.log(joke);
7
+ core.setOutput("joke-output", joke);
8
+}
9
10
+run();
0 commit comments