Closed
Description
Add a self-hosted running that only is labeled MY_TAG
Registering self-hosted runners with config.sh
always get label self-hosted
attached.
According to GithubActions: About self-hosted runners labels passing the --no-default-labels
option to config.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
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.