feat: Organization RunnerDeployment with webhook-based autoscaling only for certain repositories (#766)
Lint and Test Charts / lint-test (push) Has been cancelled

Resolves #765

Co-authored-by: Yusuke Kuoka <[email protected]>
This commit is contained in:
Tarasovych
2021-08-31 09:46:36 +09:00
committed by GitHub
co-authored by Yusuke Kuoka
parent d9df455781
commit 7008b0c257
9 changed files with 76 additions and 7 deletions
+5
View File
@@ -71,6 +71,11 @@ func (in *CheckRunSpec) DeepCopyInto(out *CheckRunSpec) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Repositories != nil {
in, out := &in.Repositories, &out.Repositories
*out = make([]string, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CheckRunSpec.