From 2ef783f57914e37848b89d16002bd79aa0a02e5d Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Fri, 6 Sep 2019 15:06:47 -0700 Subject: [PATCH 1/3] Add docs link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4aab487..390be26 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Hello world JavaScript action -This action prints "Hello World" or "Hello" + the name of a person to greet to the log. +This action prints "Hello World" or "Hello" + the name of a person to greet to the log. To learn how this action was built, see "[Creating a JavaScript action](https://help.github.com/en/articles/creating-a-javascript-action)" in the GitHub Help documentation. ## Inputs From 03ecc1e8877e9be69e1a70a6145bac1ba4b06586 Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Fri, 6 Sep 2019 15:10:28 -0700 Subject: [PATCH 2/3] Add comments --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 7ebcb44..723a82e 100644 --- a/index.js +++ b/index.js @@ -2,10 +2,12 @@ const core = require('@actions/core'); const github = require('@actions/github'); try { + // `who-to-greet` input defined in action metadata file const nameToGreet = core.getInput('who-to-greet'); console.log(`Hello ${nameToGreet}!`); const time = (new Date()).toTimeString(); core.setOutput("time", time); + // Get the JSON webhook payload for the event that triggered the workflow const payload = JSON.stringify(github.context.payload, undefined, 2) console.log(`The event payload: ${payload}`); } catch (error) { From 2b62cf098444fa7c3765a96fc337e8ba42fa9c04 Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Fri, 6 Sep 2019 15:14:35 -0700 Subject: [PATCH 3/3] Remove comment --- action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yml b/action.yml index a7fb731..07218b7 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,3 @@ -# action.yml name: 'Hello World' description: 'Greet someone and record the time' inputs: