Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #60 from actions/yaml-consistency
Use single quotes in Action metadata for consistency
  • Loading branch information
James M. Greene authored and GitHub committed Sep 9, 2022
2 parents 3c12eff + b45768b commit 791c72a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Expand Up @@ -8,27 +8,27 @@ inputs:
emit_telemetry:
description: 'Should this action only emit build telemetry instead of deploying the build artifact?'
required: false
default: "false"
default: 'false'
token:
description: 'GitHub token'
default: ${{ github.token }}
required: true
timeout:
description: 'Time in milliseconds after which to timeout and cancel the deployment (default: 10 minutes)'
required: false
default: "600000"
default: '600000'
error_count:
description: 'Maximum number of status report errors before cancelling a deployment (default: 10)'
required: false
default: "10"
default: '10'
reporting_interval:
description: 'Time in milliseconds between two deployment status report (default: 5 seconds)'
required: false
default: "5000"
default: '5000'
artifact_name:
description: 'Name of the artifact to deploy'
required: false
default: "github-pages"
default: 'github-pages'
outputs:
page_url:
description: 'URL to deployed GitHub Pages'

0 comments on commit 791c72a

Please sign in to comment.