mirror of
https://github.com/peter-evans/repository-dispatch.git
synced 2026-06-11 11:21:25 +00:00
22 lines
630 B
YAML
22 lines
630 B
YAML
name: 'Repository Dispatch'
|
|
description: 'Create a repository dispatch event'
|
|
inputs:
|
|
token:
|
|
description: 'A repo scoped GitHub Personal Access Token'
|
|
required: true
|
|
repository:
|
|
description: 'The full name of the repository to send the dispatch.'
|
|
default: ${{ github.repository }}
|
|
event-type:
|
|
description: 'A custom webhook event name.'
|
|
required: true
|
|
client-payload:
|
|
description: 'JSON payload with extra information about the webhook event that your action or worklow may use.'
|
|
default: '{}'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|
|
branding:
|
|
icon: 'target'
|
|
color: 'gray-dark'
|