Skip to content

Commit

Permalink
docs: rename action to just nsv
Browse files Browse the repository at this point in the history
  • Loading branch information
purpleclay committed Jul 5, 2023
1 parent b57d608 commit c851044
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: "NSV Action"
description: "Semantic versioning without any config"
author: "purpleclay"
name: 'NSV'
description: 'Semantic versioning without any config'
author: 'purpleclay'
branding:
color: "purple"
icon: "tag"
color: 'purple'
icon: 'tag'
inputs:
token:
description: "A token for performing authenticated requests to the GitHub API"
description: 'A token for performing authenticated requests to the GitHub API'
default: ${{ github.token }}
required: false
version:
description: "The version of NSV"
description: 'The version of NSV to download'
default: latest
required: false
next-only:
description: "If the next semantic version should just be calculated. Repository will not be tagged"
default: "false"
description: 'If the next semantic version should just be calculated. Repository will not be tagged'
default: 'false'
required: false
outputs:
nsv:
description: "The calculated next semantic version"
description: 'The calculated next semantic version'
runs:
using: "node16"
main: "dist/index.js"
using: 'node16'
main: 'dist/index.js'

0 comments on commit c851044

Please sign in to comment.