-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Labels
enhancementNew feature or requestNew feature or request
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
| ./config.sh --unattended --replace --url '$url' --token '$token' --name '$name' --labels '$labels' --runnergroup '$group' |
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.
vbem
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request