Plugin for release-it which makes a request against provided webhook url.
npm install --save-dev release-it-webhook
In release-it plugins config:
"plugins": {
"release-it-webhook": {
"webhook": {
"url": "https://hooks.slack.com/triggers/...."
}
}
}
The request body contain this payload:
{
"name": "..."
"version": "..."
"changelog": "..."
}