Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
counterleft committed Aug 11, 2023
1 parent a2a1fd7 commit f1856a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Create Tag'
description: 'Creates tags in GitHub for deployments'
name: "Create Tag"
description: "Creates tags in GitHub for deployments"
inputs:
app-name:
description: 'Name of the app to include in tag, e.g. "dashboard"'
Expand All @@ -8,13 +8,13 @@ inputs:
description: 'Environment to which the deployment was made, e.g. "prod"'
required: true
github-token:
description: 'API token for GitHub REST API'
description: "API token for GitHub REST API"
required: true
outputs:
tag:
description: 'Final tag applied'
description: "Final tag applied"
runs:
using: 'node12'
# 'main' below needs to be relative to repo root for testing with 'act'
# For running in GitHub, should be relative to 'action.yml' location
main: 'dist/index.js'
main: "dist/index.js"

0 comments on commit f1856a9

Please sign in to comment.