@@ -11,30 +11,25 @@ inputs:
11
11
description : ' Pattern for excluding files (e.g. "*/test/*")'
12
12
include-cpp :
13
13
description : ' Include .cpp files'
14
- default : false
15
- type : boolean
14
+ default : ' false'
16
15
access-level :
17
16
description : ' The minimum access level to be considered in the documentation'
18
17
default : ' public'
19
18
show-access-modifiers :
20
19
description : ' Show access modifiers in the documentation'
21
- default : false
22
- type : boolean
20
+ default : ' false'
23
21
fail-on-warnings :
24
22
description : ' Fail when documentation warnings are issued.'
25
- default : false
26
- type : boolean
23
+ default : ' false'
27
24
commit :
28
25
description : ' Boolean flag to indicate whether to commit changes'
29
- default : true
30
- type : boolean
26
+ default : ' true'
31
27
commit-message :
32
28
description : ' Commit message'
33
29
default : ' Update documentation'
34
30
debug :
35
31
description : ' Enable debugging mode to provide additional output'
36
- default : false
37
- type : boolean
32
+ default : ' false'
38
33
39
34
runs :
40
35
using : " composite"
@@ -79,11 +74,11 @@ runs:
79
74
${{ inputs.source-path }} \
80
75
${{ inputs.target-path }} \
81
76
${{ inputs.exclude-pattern && format('--exclude {0}', inputs.exclude-pattern) || '' }} \
82
- ${{ inputs.include-cpp == true && '--include-cpp' || '' }} \
83
- ${{ inputs.show-access-modifiers == true && '--show-access-modifiers' || '' }} \
77
+ ${{ inputs.include-cpp == ' true' && '--include-cpp' || '' }} \
78
+ ${{ inputs.show-access-modifiers == ' true' && '--show-access-modifiers' || '' }} \
84
79
${{ inputs.access-level && format('--access-level {0}', inputs.access-level) || '' }} \
85
- ${{ inputs.fail-on-warnings == true && '--fail-on-warnings' || '' }} \
86
- ${{ inputs.debug == true && '--debug ' || '' }}
80
+ ${{ inputs.fail-on-warnings == ' true' && '--fail-on-warnings' || '' }} \
81
+ ${{ inputs.debug == ' true' && '--debug ' || '' }}
87
82
88
83
- name : Commit Docs
89
84
if : inputs.commit
0 commit comments