-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaction.yml
27 lines (27 loc) · 820 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: 'Dispatch Action'
description: 'Emit repository dispatch events to trigger other workflows'
branding:
icon: 'arrow-up-circle'
color: 'yellow'
inputs:
token:
description: 'The Github access token to use (i.e. secrets.GITHUB_TOKEN)'
required: true
repo:
description: 'The name of the repository to dispatch the event to'
required: true
default: '@'
owner:
description: 'The owner of the repository to dispatch the event to'
default: null
event_type:
description: 'The type of event to be dispatched'
required: true
message:
description: 'An optional JSON string payload to be dispatched'
debug:
description: 'Enable verbose logging for debugging your workflow. Not recommended for production'
default: 0
runs:
using: 'node12'
main: 'dist/index.js'