@auto-it/microsoft-teams
v11.3.0
Published
Microsoft Teams plugin for auto
Downloads
1,397
Maintainers
Readme
Microsoft-Teams Plugin
Post your release notes to a Microsoft teams channel.
Installation
This plugin is not included with the auto
CLI installed via NPM. To install:
npm i --save-dev @auto-it/microsoft-teams
# or
yarn add -D @auto-it/microsoft-teams
Usage
To use the plugin include it in your .autorc
.
To generate incoming webhook in microsoft teams, checkout this blog.
{
"plugins": [
["microsoft-teams", { "url": "https://url-to-your-hook.com" }],
// or
["microsoft-teams", "https://url-to-your-hook.com"],
// or
[
"microsoft-teams",
{ "url": "https://url-to-your--hook.com" }
]
// Below: Uses microsoft-teams hook set in process.env.MICROSOFT_TEAMS_WEBHOOK_URL
"microsoft-teams"
]
}