-
Notifications
You must be signed in to change notification settings - Fork 33
/
action.yml
46 lines (44 loc) · 1.59 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
name: 'Auto-assign Issue'
description: 'Auto-assigns issues to users or team members'
inputs:
repo-token:
description: 'The GITHUB_TOKEN, needed to update the Issue'
default: ${{ github.token }}
assignees:
description: 'Comma separated list of user names. Required if teams is not specified.'
required: false
teams:
description: 'Comma separated list of team names. Required if assignees is not specified.'
required: false
numOfAssignee:
description: 'Number of random assignee'
required: false
abortIfPreviousAssignees:
description: 'Flag that aborts the action if there were assignees previously.'
required: false
default: false
removePreviousAssignees:
description: 'Flag that removes assignees before assigning them (useful the issue is reasigned).'
required: false
default: false
allowNoAssignees:
description: 'Flag that prevents the action from failing when there are no assignees.'
required: false
default: false
allowSelfAssign:
description: 'Flag that allows self-assignment to the issue author.'
required: false
default: true
issueNumber:
description: 'Manually specified issue (or PR) ID to be used instead of the one in the context.'
required: false
teamIsPullRequestReviewer:
description: 'Flag that allows a team to be set as reviewer'
required: false
default: false
runs:
using: 'node20'
main: 'src/index.js'
branding:
icon: 'alert-circle'
color: 'red'