-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (27 loc) · 757 Bytes
/
action.yml
File metadata and controls
28 lines (27 loc) · 757 Bytes
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
name: 'CODEOWNERS action'
description: 'Extracts CODEOWNERS information'
author: 'Sebass van Boxel'
inputs:
path:
required: false
description: 'Location of codeowners file'
default: './CODEOWNERS'
file_match_info:
required: false
description: Output how version controlled files match CODEOWNERS rules
default: 'false'
include_no_owners:
required: false
description: If files without owners should be included or not
default: 'false'
output:
codeowners:
description: "JSON string containing all CODEOWNERS information"
filematches:
description: "JSON string contain how files match CODEOWNERS rules"
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'user-check'
color: 'gray-dark'