-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
42 lines (34 loc) · 1.04 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
name: 'Code Owner Self Merge'
description: 'Lets the CODEOWNERS file determine who can merge a PR'
author: 'Orta Therox'
branding:
icon: git-merge
color: purple
inputs:
cwd:
description: 'The path to the root folder where it should look for code owners'
default: ''
required: false
merge_method:
description: "The merge strategy to use: 'merge', 'squash' or 'rebase'"
default: 'merge'
required: false
if_no_maintainers_add_label:
description: "If a PR does not have any community maintainers, apply this label"
default: ''
required: false
if_no_maintainers_assign:
description: 'If a PR does not have any community maintainers, assign these people (e.g. "@orta @sandersn")'
default: ''
required: false
quiet:
description: 'Do not say "this PR can be merged by x, y, z" out loud'
default: ''
required: false
ownerNoPings:
description: 'Wrap mention in inline code block to prevent pings'
default: '[]'
required: false
runs:
using: 'node12'
main: 'index.js'