@auto-it/twitter
TypeScript icon, indicating that this package has built-in type declarations

11.1.2 • Public • Published

Twitter Plugin

Post tweets after a release is made.

Prerequisites

To post tweets to twitter you need the following secrets set in your environment:

  • TWITTER_ACCESS_TOKEN
  • TWITTER_ACCESS_TOKEN_SECRET
  • TWITTER_CONSUMER_KEY
  • TWITTER_CONSUMER_KEY_SECRET

Installation

This plugin is not included with the auto CLI installed via NPM. To install:

npm i --save-dev @auto-it/twitter
# or
yarn add -D @auto-it/twitter

Usage

Simply supply the names of the account to filter

{
  "plugins": [
    [
      "twitter",
      {
        /* options */
      }
    ]
  ]
}

Options

Message

You can configure the message posted to twitter. The message option should use the following special tokens to create a tweet.

  • %release - The version bump (major, minor, patch)
  • %package - The name of the package
  • %notes - Your release notes truncated to fit in the tweet
  • %link - A link to your the release on GitHub
  • %version - The latest version number

Default:

A new %release version of %package was released!

%notes

%link
{
  "plugins": [
    ["twitter", { "message": "v%version of %package was released!\n\n%link" }]
  ]
}

Threshold

By default the twitter plugin will only tweet if the version difference between the latest and the last release is greater than a minor.

{
  "plugins": [["twitter", { "threshold": "major" }]]
}

Package Sidebar

Install

npm i @auto-it/twitter

Weekly Downloads

13

Version

11.1.2

License

MIT

Unpacked Size

13.2 kB

Total Files

7

Last publish

Collaborators

  • alisowski