Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pchalupa/release-it-webhook

Webhook plugin for release-it
https://github.com/pchalupa/release-it-webhook

release-it release-it-plugin

Last synced: 8 days ago
JSON representation

Webhook plugin for release-it

Awesome Lists containing this project

README

        

# Release-it Webhook

Plugin for [release-it](https://github.com/release-it/release-it) which makes a request against provided webhook url.

### Install

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

### Configuration

In [release-it](https://github.com/release-it/release-it/blob/main/docs/plugins.md#using-a-plugin) plugins config:

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

### Webhook

The request body contain this payload:

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