From a1a41aaad1ad209dc4472923897d93a3f647f0e2 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Mon, 26 Apr 2021 16:10:13 -0700 Subject: [PATCH] fix: rename action to `hello-javascript` --- .github/workflows/test.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c96a630..88912bb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,5 +19,5 @@ jobs: id: hello_world_greeting with: greeting: "Gregor" - - run: node -e 'assert.equal("${{ steps.hello_world.outputs.greeting }}", "Hello, world!")' + - run: node -e 'assert.equal("${{ steps.hello_world.outputs.greeting }}", "Hello, JavaScript!")' - run: node -e 'assert.equal("${{ steps.hello_world_greeting.outputs.greeting }}", "Hello, Gregor!")' diff --git a/action.yml b/action.yml index 7a323dd..87ba08c 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: Hello, world! +name: Hello, JS! description: "A simple GitHub Action written in JavaScript" branding: icon: "clipboard" @@ -7,7 +7,7 @@ inputs: greeting: description: "Custom media type in the Accept header" required: false - default: "world" + default: "JavaScript" outputs: greeting: description: "The full greeting text"