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

Commit b434a2d

Browse files
committed
org_name is optional
1 parent 1ef5f3a commit b434a2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/instance.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141

4242
define github_actions_runner::instance (
4343
Enum['present', 'absent'] $ensure = 'present',
44-
String $org_name = $github_actions_runner::org_name,
4544
String $personal_access_token = $github_actions_runner::personal_access_token,
4645
String $user = $github_actions_runner::user,
4746
String $group = $github_actions_runner::group,
@@ -53,8 +52,9 @@
5352
Optional[String] $https_proxy = $github_actions_runner::https_proxy,
5453
Optional[String] $no_proxy = $github_actions_runner::no_proxy,
5554
Optional[Array[String]] $labels = undef,
56-
Optional[String] $repo_name = undef,
5755
Optional[String] $enterprise_name = $github_actions_runner::enterprise_name,
56+
Optional[String] $org_name = $github_actions_runner::org_name,
57+
Optional[String] $repo_name = undef,
5858
) {
5959

6060
if $labels {

0 commit comments

Comments
 (0)