Skip to content

Commit

Permalink
Use single quotes everywhere for consistency in Actions manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
James M. Greene authored and James M. Greene committed Aug 5, 2022
1 parent 7c63403 commit 635cafe
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 635cafe

Please sign in to comment.