Remove duplicate self-hosted condition (#1016)
Duplicate condition caused after merge of #953 and #1012
This commit is contained in:
parent
4ebec38208
commit
608c56936e
|
|
@ -655,9 +655,6 @@ HRA:
|
|||
|
||||
// Ensure that the RunnerSet-managed runners have all the labels requested by the workflow_job.
|
||||
for _, l := range labels {
|
||||
if l == "self-hosted" {
|
||||
continue // label is automatically added to self-hosted runners
|
||||
}
|
||||
var matched bool
|
||||
|
||||
// ignore "self-hosted" label as all instance here are self-hosted
|
||||
|
|
@ -689,9 +686,6 @@ HRA:
|
|||
|
||||
// Ensure that the RunnerDeployment-managed runners have all the labels requested by the workflow_job.
|
||||
for _, l := range labels {
|
||||
if l == "self-hosted" {
|
||||
continue // label is automatically added to self-hosted runners
|
||||
}
|
||||
var matched bool
|
||||
|
||||
// ignore "self-hosted" label as all instance here are self-hosted
|
||||
|
|
|
|||
Loading…
Reference in New Issue