-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
51 lines (47 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: 'CreateIssue'
description: 'GitHub action to create repository issues'
author: 'RandLabs Inc.'
branding:
color: "blue"
icon: "edit-3"
inputs:
title:
description: Issue title.
required: false
assignees:
description: A GitHub user or list of users to assign the issue.
required: false
labels:
description: A list of labels to add.
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
default: 'true'
search-type:
description: Existing types of issues to search for (none, open, closed or all).
required: false
default: 'open'
search-title:
description: A javascript regex pattern. Defaults to any (*).
required: false
search-labels:
description: A list of labels to search for. Defaults to the values specified in labels.
required: false
outputs:
id:
description: 'The ID of the created/updated issue.'
url:
description: 'The location of the created/updated issue.'
action:
description: 'The executed action (none, created or updated).'
runs:
using: 'node20'
main: 'dist/index.js'