Skip to content

Latest commit

 

History

History
 
 

released

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Released Plugin

This plugin

  • comments on the merged PR with the new version
  • comments on closed issues with the new version
  • adds a released label to the pull request
  • adds a released label 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/released

Usage

To use the plugin include it in your .autorc

{
  "plugins": ["npm", "released"]
}

Options

Label

Customize the label this plugin attaches to merged pull requests.

{
  "plugins": [
    "npm",
    [
      "released",
      {
        "label": ":shipit:"
      }
    ]
  ]
}

Message

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": [
    "npm",
    [
      "released",
      {
        "message": "%TYPE went out with version: %VERSION"
      }
    ]
  ]
}

Lock Issue

Lock issues that have been merged in PRs.

{
  "plugins": ["npm", ["released", { "lockIssues": true }]]
}