webhook-action/action.yml

30 lines
791 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
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
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'