From e6fdb6e99ad1441a2f4a961735f1547447437c31 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Tue, 10 Sep 2019 23:28:52 -0400 Subject: [PATCH] update yml info (#16) --- action.yml | 12 ++++++------ package.json | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index 50f8fd6..5cfdde4 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,10 @@ -name: 'Node 12 Template Action' -description: 'Get started with Node actions' -author: 'GitHub' +name: 'Your name here' +description: 'Provide a description here' +author: 'Your name or organization here' inputs: - myInput: - description: 'Input to use' - default: 'world' + myInput: # change this + description: 'input description here' + default: 'default value if applicable' runs: using: 'node12' main: 'lib/main.js' diff --git a/package.json b/package.json index c03b326..ff41092 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "node12-template-action", + "name": "javascript-template-action", "version": "0.0.0", "private": true, - "description": "Node 12 template action", + "description": "JavaScript template action", "main": "lib/main.js", "scripts": { "build": "tsc", @@ -17,7 +17,7 @@ "node", "setup" ], - "author": "GitHub", + "author": "YourNameOrOrganization", "license": "MIT", "dependencies": { "@actions/core": "^1.0.0"