-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
41 lines (41 loc) · 1.31 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
name: 'Handle Multiple Issues'
description: 'Handle the current issue if the author has existing open issues'
author: 'Anmol Baranwal <[email protected]>'
inputs:
label:
description: 'Add a label to the current issue. Use commas to separate if there are multiple labels.'
default: 'multiple issues'
required: false
issueNumber:
description: 'Include the previous issue number created by the author in the comment.'
default: 'true'
required: false
comment:
description: 'Custom text to add with or without the issue number in the comment.'
default: ''
required: false
close:
description: 'Close the current issue if set to true.'
required: false
gh-token:
description: 'The GitHub token for authentication.'
default: ${{ github.token }}
required: false
assign:
description: 'To filter the issues that are assigned to the author'
default: 'false'
required: false
ignoreUsers:
description: 'Specify usernames that should be ignored while running this workflow'
default: ''
required: false
ignoreCollaborators:
description: 'Ignore all the collaborators in the repository while running this workflow'
default: 'false'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'activity'
color: 'green'