After upgrading from 0.4.0 to 0.10.0 I had to (locally) change this line: https://github.com/Telefonica/puppet-github-actions-runner/blob/5efef4c6146f484cd6d1fd097bdb44e656c62e16/manifests/instance.pp#L69 ```ruby # from: Optional[Array[String[1]]] $labels = undef, # to Optional[Array[String]] $labels = undef, ``` There seemed to be no way to specify labels. I'm guessing that a valid parameter would be: ```ruby [ ['one'], ['two'] ] ``` but what it would actually do with it I did not check. After correcting the code, I was able to use a flat array as a parameter: ```ruby [ 'one', 'two' ] ```
After upgrading from 0.4.0 to 0.10.0 I had to (locally) change this line:
puppet-github-actions-runner/manifests/instance.pp
Line 69 in 5efef4c
There seemed to be no way to specify labels.
I'm guessing that a valid parameter would be:
but what it would actually do with it I did not check. After correcting the code, I was able to use a flat array as a parameter: