-
Notifications
You must be signed in to change notification settings - Fork 84
/
action.yml
31 lines (31 loc) · 926 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
28
29
30
31
name: Create an issue
description: Creates a new issue using a template with front matter.
runs:
using: node20
main: dist/index.js
branding:
icon: alert-circle
color: gray-dark
inputs:
assignees:
description: GitHub handle of the user(s) to assign the issue (comma-separated)
required: false
milestone:
description: Number of the milestone to assign the issue to
required: false
filename:
description: The name of the file to use as the issue template
default: .github/ISSUE_TEMPLATE.md
required: false
update_existing:
description: Update an open existing issue with the same title if it exists
required: false
search_existing:
description: Existing types of issues to search for (comma-separated)
required: false
default: open
outputs:
number:
description: Number of the issue that was created
url:
description: URL of the issue that was created