Socket
Socket
Sign inDemoInstall

@auto-it/released

Package Overview
Dependencies
Maintainers
1
Versions
973
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auto-it/released

Released plugin for auto. Comments with version + extra


Version published
Weekly downloads
47K
decreased by-28.3%
Maintainers
1
Weekly downloads
 
Created
Source

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

: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": ["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 - Either PR or Issue
  • %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 }]]
}

Keywords

FAQs

Package last updated on 30 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc