2020-08-26 00:54:39 +00:00
|
|
|
name: 'Webhook Action'
|
2020-08-26 00:56:36 +00:00
|
|
|
author: "Joel Male"
|
2020-08-26 00:52:47 +00:00
|
|
|
description: 'Send a webhook event to anywhere!'
|
2020-08-26 00:56:36 +00:00
|
|
|
branding:
|
|
|
|
icon: 'alert-octagon'
|
|
|
|
color: 'gray-dark'
|
2020-08-26 00:52:47 +00:00
|
|
|
inputs:
|
|
|
|
url:
|
|
|
|
description: 'The url to send the webhook event to'
|
|
|
|
required: true
|
|
|
|
headers:
|
|
|
|
description: 'Additional headers to send alongside the defaults'
|
|
|
|
required: false
|
|
|
|
body:
|
|
|
|
description: 'The data sent to the webhook'
|
|
|
|
required: false
|
2021-02-26 03:58:33 +00:00
|
|
|
insecure:
|
|
|
|
description: 'Enables calling to known self-signed or invalid SSL certificates'
|
|
|
|
required: false
|
2024-03-28 02:35:16 +00:00
|
|
|
github_event:
|
|
|
|
description: 'Include the event that triggered the action in the payload body'
|
|
|
|
required: false
|
2020-08-26 00:52:47 +00:00
|
|
|
outputs:
|
|
|
|
status:
|
|
|
|
description: 'The status of the webhook event'
|
|
|
|
runs:
|
2024-03-28 02:00:41 +00:00
|
|
|
using: 'node20'
|
2024-03-28 02:33:51 +00:00
|
|
|
main: 'dist/main.js'
|
|
|
|
post: 'dist/main.js'
|