-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
37 lines (34 loc) · 1.09 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
name: 'Action to update GitHub Action documentation'
description: 'Update docuemntation in the README file for a GitHub Action based on the action.yml.'
author: 'Niek Palm'
branding:
icon: book-open
color: purple
inputs:
readme:
description: 'Readme file to update.'
required: false
default: README.md
actionFile:
description: 'The action definition file.'
required: false
deprecationMessage: 'This input is replaced by sourceFile'
sourceFile:
description: 'The action or workflow definition file.'
required: false
default: action.yml
includeNameHeader:
description: 'Include the name header in the updated readme.'
required: false
default: true
tocLevel:
description: 'TOC level used for the headers. The `includeNameHeader` input is influecing the TOC level, setting `includeNameHeader` to true will increase the TOC level by 1.'
required: false
default: 2
lineBreaks:
description: 'Line breaks to be used in updated readme (LF, CR or CRLF).'
required: false
default: LF
runs:
using: 'node20'
main: 'dist/index.js'