You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I read through the latest official documentation for this section, and found a few other options for config.sh were also supported now.
So, in order to adapt the iteration of official config.sh, I added an --opts option into this wrapper, which simply passthrough user given options to config.sh.
For the task-specific needs of --no-default-labels, it can be achieved by:
Add a self-hosted running that only is labeled
MY_TAG
Registering self-hosted runners with
config.sh
always get labelself-hosted
attached.According to GithubActions: About self-hosted runners labels passing the
--no-default-labels
option toconfig.sh
prevents that.It would nice to have
mr.bash
recognizing--no-default-labels
to not add any label except the ones specified in--label MY_TAG
TODO
We would have to change
multi-runners/mr.bash
Line 302 in ccb8f59
into something like
./config.sh --no-default-labels --unattended --replace --url '$url' --token '$token' --name '$name' --labels '$extraLabels' --runnergroup '$group'
IF option
--no-default-labels
was passed.The text was updated successfully, but these errors were encountered: