Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pchalupa/release-it-webhook
- Owner: pchalupa
- License: mit
- Created: 2024-01-01T12:46:19.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-08T11:26:42.000Z (7 months ago)
- Last Synced: 2024-04-08T12:36:32.218Z (7 months ago)
- Topics: release-it, release-it-plugin
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/release-it-webhook
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
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": "..."
}
```