Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 590 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 590 Bytes

Release-it Webhook

Plugin for release-it which makes a request against provided webhook url.

Install

npm install --save-dev release-it-webhook

Configuration

In release-it plugins config:

"plugins": {
  "release-it-webhook": {
	"webhook": {
		"url": "https://hooks.slack.com/triggers/...."
	}
  }
}

Webhook

The request body contain this payload:

{
	"name": "..."
	"version": "..."
	"changelog": "..."
}