-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
39 lines (34 loc) · 1.02 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
---
name: 'Format CODEOWNERS'
author: '@Archetypically'
description: Formats CODEOWNERS files. Does not commit any files.
branding:
icon: file-text
color: yellow
inputs:
format-style:
description: The style of format to apply.
required: true
default: 'lined-up'
choices:
- 'lined-up'
- 'one-space'
file-path:
description: |
The path to the CODEOWNERS file to operate on.
Otherwise searches for valid CODEOWNERS files as described in:
https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location.
required: false
default: CODEOWNERS
remove-empty-lines:
description: Whether or not to remove empty lines.
required: false
default: false
outputs:
formatted-files:
description: |
A space-separated list of files that were changed in some way.
If a file was not changed, it will not appear in this list.
runs:
using: 'node16'
main: 'dist/index.js'