-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathaction.yml
More file actions
21 lines (21 loc) · 661 Bytes
/
action.yml
File metadata and controls
21 lines (21 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'Repository Dispatch'
description: 'Create a repository dispatch event'
inputs:
token:
description: 'GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)'
default: ${{ github.token }}
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: 'node24'
main: 'dist/index.js'
branding:
icon: 'target'
color: 'gray-dark'