Package Exports
- @auto-it/released
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@auto-it/released) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Released Plugin
This plugin
- comments on the merged PR with the new version
- comments on closed issues with the new version
- adds a
releasedlabel to the pull request - adds a
releasedlabel to closed issues
::: message is-warning
Make sure that you create the released label on you project
:::
Installation
This plugin is included with the auto CLI so you do not have to install it. To install if you are using the auto API directly:
npm i --save-dev @auto-it/released
# or
yarn add -D @auto-it/releasedUsage
To use the plugin include it in your .autorc
{
"plugins": ["released"]
}Options
Label
Customize the label this plugin attaches to merged pull requests.
{
"plugins": [
[
"released",
{
"label": ":shipit:"
}
]
]
}Prerelease Label
Customize the prerelease label this plugin attaches to pull requests merged to prerelease branches.
{
"plugins": [
[
"released",
{
"prereleaseLabel": "🚧"
}
]
]
}Message
To customize the message this plugin uses on issues and pull requests use the following format.
%TYPE- EitherPRorIssue%VERSION- The version that was just published
{
"plugins": [
[
"released",
{
"message": "%TYPE went out with version: %VERSION"
}
]
]
}Lock Issue
Lock issues that have been merged in PRs.
{
"plugins": [["released", { "lockIssues": true }]]
}