From 542786ddbcc01c79cb60c28e422fd6445595adae Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 5 Aug 2022 13:27:44 -0500 Subject: [PATCH 1/3] Improve and shorten description for Marketplace publication --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 27a4d12..c6995c5 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: "Configure Pages" -description: "An action to enable Pages and extract various metadata about a site. It can also be used to configure various static site generators we support as starter workflows." +description: "A GitHub Action to enable Pages, extract various metadata about a site, and configure some supported static site generators." runs: using: "node16" main: "dist/index.js" From 7c6340377c39f748697b284f9af89c66c4d04439 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 5 Aug 2022 13:28:40 -0500 Subject: [PATCH 2/3] Add author to Action manifest --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index c6995c5..012a3b8 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,6 @@ name: "Configure Pages" description: "A GitHub Action to enable Pages, extract various metadata about a site, and configure some supported static site generators." +author: "GitHub" runs: using: "node16" main: "dist/index.js" From 635cafe47260e0c8f527dd2982ab7a2be814d691 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 5 Aug 2022 13:29:15 -0500 Subject: [PATCH 3/3] Use single quotes everywhere for consistency in Actions manifest --- action.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index 012a3b8..7e1cdfa 100644 --- a/action.yml +++ b/action.yml @@ -1,20 +1,20 @@ -name: "Configure Pages" -description: "A GitHub Action to enable Pages, extract various metadata about a site, and configure some supported static site generators." -author: "GitHub" +name: 'Configure Pages' +description: 'A GitHub Action to enable Pages, extract various metadata about a site, and configure some supported static site generators.' +author: 'GitHub' runs: - using: "node16" - main: "dist/index.js" + using: 'node16' + main: 'dist/index.js' inputs: static_site_generator: - description: "Optional static site generator to attempt to configure (nuxt, next or gatsby)" + description: 'Optional static site generator to attempt to configure (nuxt, next or gatsby)' required: false token: - description: "GitHub token" + description: 'GitHub token' default: ${{ github.token }} required: true enablement: - description: "Should a Pages site be enabled for the repository if not so already?" - default: "true" + description: 'Should a Pages site be enabled for the repository if not so already?' + default: 'true' required: false outputs: base_url: