jaywcjlove/Create Tags From
Auto create tags from commit or package.json.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| token | Your GITHUB_TOKEN | no | ${{ github.token }} |
| version | Create tag for specified version | no | "" |
| test | The regular expression matches the submitted content. | no | "" |
| commit | Compare the tag `version` number in the `commit content` with the last tag and automatically generate tags | no | "" |
| package-path | The path of the package.json file. | no | package.json |
| body | An optional body for the release. | no | "" |
| release | Optionally marks this tag as release. Set to true to enable. | no | false |
| draft | Optionally marks this release as a draft release. Set to true to enable. | no | false |
| prerelease | Optionally marks this release as prerelease. Set to true to enable. | no | false |
Outputs
| name | description |
|---|---|
| version | The version number of the tag created. example: v1.0.0 |
| majorVersion | MAJOR version when you make incompatible API changes. |
| minorVersion | MINOR version when you add functionality in a backwards compatible manner, and. |
| patchVersion | PATCH version when you make backwards compatible bug fixes. |
| versionNumber | The version number of the tag created. example: 1.0.0 |
| preversion | The previous tag version number. |
| preversionNumber | The previous tag version number of the tag created. example: v1.0.0 |
| successful | The tag was successfully created. |