-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (33 loc) · 1.31 KB
/
action.yml
File metadata and controls
34 lines (33 loc) · 1.31 KB
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
name: "Auto Assign Review Teams"
description: "Send review requests to teams (with Auto Assignment) or persons"
author: "Robert Wiesner"
branding:
icon: "check"
color: "blue"
inputs:
repo-token:
description: "Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}"
required: true
teams:
description: "Teams (works best with Auto Assignment) - team1, team 2. If pick-one-from-persons-or-team is true, only 1 person from the first team will be picked."
required: false
persons:
description: "Individual Reviewers - person1, person2. If pick-one-from-persons-or-team is true, only 1 person from this list will be picked."
required: false
org:
description: "Org (only required if using teams in pick-one-from-persons-or-team)"
required: false
pick-one-from-persons-or-team:
description: "If the pick-one-from-persons-or-team is True, only 1 person from the first team and/or persons will be picked."
required: false
default: "false"
include-draft:
description: "If set to true, DRAFT PRs will also be covered (default=false)"
required: false
default: "false"
skip-with-manual-reviewers:
description: "If the given number of reviewers is already assigned, auto assign will be skipped"
required: false
runs:
using: "node20"
main: "dist/index.js"