Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 3f83b4a

Browse files
Lukas-Stuehrkmattt
authored andcommitted
Add minimum-access-level input to action.yml again. (#253)
This reverts commit d4b268d.
1 parent f267586 commit 3f83b4a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

action.yml

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ inputs:
2121
description: "The path for generated output"
2222
required: true
2323
default: "./.build/documentation"
24+
minimum-access-level:
25+
description: "The minimum access level of the symbols which should be included (public, internal, or private)"
26+
required: false
27+
default: "public"
2428

2529
runs:
2630
using: "docker"
@@ -37,6 +41,8 @@ runs:
3741
"${{ inputs.module-name }}",
3842
--output,
3943
"${{ inputs.output }}",
44+
--minimum-access-level,
45+
"${{ inputs.minimum-access-level }}"
4046
]
4147

4248
branding:

0 commit comments

Comments
 (0)