webhook-action/action.yml

22 lines
532 B
YAML
Raw Normal View History

2020-08-26 00:54:39 +00:00
name: 'Webhook Action'
2020-08-26 00:56:36 +00:00
author: "Joel Male"
description: 'Send a webhook event to anywhere!'
2020-08-26 00:56:36 +00:00
branding:
icon: 'alert-octagon'
color: 'gray-dark'
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'