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: 5 months ago
JSON representation
Webhook plugin for release-it
- Host: GitHub
- URL: https://github.com/pchalupa/release-it-webhook
- Owner: pchalupa
- License: mit
- Created: 2024-01-01T12:46:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-21T12:29:11.000Z (5 months ago)
- Last Synced: 2026-02-21T18:38:43.071Z (5 months ago)
- Topics: release-it, release-it-plugin
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/release-it-webhook
- Size: 466 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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": "..."
}
```