-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (28 loc) · 980 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: 'Auto assigns assignees'
description: 'GitHub action that automatically assigns issues and pull requests to specified assignees.'
inputs:
assignees:
required: true
description: 'Comma-separated list of usernames. Assignments will be made to them.'
github_token:
default: '${{ github.token }}'
required: true
description: 'GitHub app installation access token.'
allow_self_assign:
default: 'true'
required: false
description: 'Flag that allows self-assignment to an issue or pull request.'
allow_no_assignees:
default: 'false'
required: false
description: 'Flag that prevents the action from failing when there are no assignees.'
assignment_options:
default: 'ISSUE'
required: false
description: 'Assignment options in a GitHub action related to automatically assigning issues and pull requests.'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'git-pull-request'
color: 'gray-dark'