mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2026-04-15 19:05:43 +00:00
feat(branches): support branches of semantic-release v16+
support branches of semantic-release v16+ #24 #25
This commit is contained in:
parent
c7a37752d9
commit
706c0ef960
8 changed files with 97 additions and 26 deletions
13
action.yml
13
action.yml
|
|
@ -5,13 +5,20 @@ branding:
|
|||
icon: 'package'
|
||||
color: 'orange'
|
||||
inputs:
|
||||
branch:
|
||||
description: 'The branch on which releases should happen. It will override the branch attribute in your configuration file. If the attribute is not configured on both sides, the default is master.'
|
||||
semantic_version:
|
||||
description: 'Specify specifying version range for semantic-release. If no version range is specified, semantic-release@^15 will be used by default.'
|
||||
required: false
|
||||
description: 'Specify specifying version range for semantic-release. If no version range is specified, latest version will be used by default'
|
||||
branches:
|
||||
required: false
|
||||
description: 'The branches on which releases should happen. It will override the branches attribute in your configuration file. Support for semantic-release above v16. See https://semantic-release.gitbook.io/semantic-release/usage/configuration#branches for more information.'
|
||||
branch:
|
||||
required: false
|
||||
description: 'The branch on which releases should happen. It will override the branch attribute in your configuration file. If the attribute is not configured on both sides, the default is master. Support for semantic-release older than v16.'
|
||||
extra_plugins:
|
||||
required: false
|
||||
description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.'
|
||||
dry_run:
|
||||
required: false
|
||||
description: 'Whether to run semantic release in `dry-run` mode. It will override the dryRun attribute in your configuration file'
|
||||
outputs:
|
||||
new_release_published:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue