forked from OSS-Docs-Tools/code-owner-self-merge
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (30 loc) · 932 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
32
33
34
35
36
37
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: "squash"
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
runs:
using: "node20"
main: "index.js"