mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
18 lines
448 B
YAML
18 lines
448 B
YAML
|
name: 'Webhook'
|
||
|
description: 'Send a webhook event to anywhere!'
|
||
|
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
|
||
|
outputs:
|
||
|
status:
|
||
|
description: 'The status of the webhook event'
|
||
|
runs:
|
||
|
using: 'node12'
|
||
|
main: 'dist/main.js'
|