-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
32 lines (29 loc) · 1.18 KB
/
action.yaml
File metadata and controls
32 lines (29 loc) · 1.18 KB
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
28
29
30
31
32
name: 'IssueOps Command Action'
description: 'IssueOps commands in GitHub Actions.'
author: 'knowledge-work'
branding:
color: white
icon: message-square
inputs:
command:
description: 'The name of the command to be used in IssueOps, which can be specified as a comma-separated list.'
required: true
allowed_contexts:
description: 'The comment contexts that trigger the IssueOps command, specified as a comma-separated list.'
default: 'issue,pull_request'
outputs:
continue:
description: 'Indicates whether the IssueOps command was triggered and the workflow should continue with the string `"true"`. If the action did not complete successfully, `"false"` will be used.'
params:
description: 'The parameters of the triggered IssueOps command, provided as a JSON string.'
comment_id:
description: 'The ID of the comment that triggered this action.'
actor:
description: 'The GitHub handle of the actor who executed the IssueOps command.'
issue_number:
description: 'The issue number of the comment that triggered this action.'
command:
description: 'The command of the triggered IssueOps command.'
runs:
using: 'node20'
main: 'dist/index.js'