We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf6096 commit 3423c5aCopy full SHA for 3423c5a
1 file changed
README.md
@@ -0,0 +1,23 @@
1
+# Hello world JavaScript action
2
+
3
+This action prints "Hello World" to the log or "Hello" + the name of a person to greet.
4
5
+## Inputs
6
7
+### `who-to-greet`
8
9
+**Required** The name of the person to greet. Default `"World"`.
10
11
+## Outputs
12
13
+### `time`
14
15
+The time we greeted you.
16
17
+## Example usage
18
19
+```yaml
20
+uses: actions/hello-world-javascript-action@master
21
+with:
22
+ who-to-greet: 'Mona the Octocat'
23
+```
0 commit comments