mirror of
https://github.com/jon4hz/workflow-webhook.git
synced 2025-12-19 23:56:02 +01:00
25 lines
833 B
YAML
25 lines
833 B
YAML
name: 'Workflow Private Webhook Action'
|
|
description: 'A Github workflow action to call a webhook with payload data from the event. Support for JSON or URL encoded endpoints.'
|
|
inputs:
|
|
webhook_url:
|
|
description: 'The HTTP URI of the webhook endpoint to invoke'
|
|
required: true
|
|
webhook_secret:
|
|
description: 'The secret with which a signature hash is generated'
|
|
required: true
|
|
webhook_auth:
|
|
description: 'Credentials to be used for BASIC authentication (optional)'
|
|
webhook_type:
|
|
description: 'json | form-urlencoded | json-extended'
|
|
silent:
|
|
description: 'Optional, set to true to disable output and therefore IP leaking'
|
|
data:
|
|
description: 'Optional additional data to include in the payload'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
|
|
branding:
|
|
icon: 'terminal'
|
|
color: 'gray-dark' |