$ cnpm install @auto-it/released
This plugin
released label to the pull requestreleased label to closed issues:warning: Make sure that you create the
releasedlabel on you project
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/released
To use the plugin include it in your .autorc
{
"plugins": ["released"]
}
Customize the label this plugin attaches to merged pull requests.
{
"plugins": [
[
"released",
{
"label": ":shipit:"
}
]
]
}
Customize the prerelease label this plugin attaches to pull requests merged to prerelease branches.
{
"plugins": [
[
"released",
{
"prereleaseLabel": "????"
}
]
]
}
To customize the message this plugin uses on issues and pull requests use the following format.
%TYPE - Either PR or Issue%VERSION - The version that was just published{
"plugins": [
[
"released",
{
"message": "%TYPE went out with version: %VERSION"
}
]
]
}
Lock issues that have been merged in PRs.
{
"plugins": [["released", { "lockIssues": true }]]
}
Whether to comment on PRs made by bots.
{
"plugins": [["released", { "includeBotPrs": true }]]
}
Copyright 2013 - present © cnpmjs.org | Home |