Skip to content

Commit fb2b962

Browse files
committed
update action
1 parent df6008b commit fb2b962

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

action.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
name: The name of your action here
2-
description: Provide a description here
3-
author: Your name or organization here
1+
name: CODEOWNERS coverage checker
2+
description:
3+
Checks if all files in the repository are covered by the CODEOWNERS file.
4+
author: joelharkes
45

56
# Add your action's branding here. This will appear on the GitHub Marketplace.
67
branding:
@@ -9,15 +10,20 @@ branding:
910

1011
# Define your inputs here.
1112
inputs:
12-
milliseconds:
13-
description: Your input description here
14-
required: true
15-
default: '1000'
13+
include-gitignore:
14+
description: Wether or not to exclude files from .gitignore.
15+
required: false
16+
default: 'false'
17+
ignore-default:
18+
description: Wether to ignore the default * CODEOWNERS line.
19+
required: false
20+
default: 'false'
21+
files:
22+
description: Files to check, can be used to only check git modified files.
23+
required: false
1624

1725
# Define your outputs here.
1826
outputs:
19-
time:
20-
description: Your output description here
2127

2228
runs:
2329
using: node20

0 commit comments

Comments
 (0)