diff --git a/github/runner-groups/group-neural-magic/group.tf b/github/runner-groups/group-neural-magic/group.tf index e2bf2090..75181e5d 100644 --- a/github/runner-groups/group-neural-magic/group.tf +++ b/github/runner-groups/group-neural-magic/group.tf @@ -7,9 +7,10 @@ resource "github_actions_runner_group" "neural_magic_runners" { visibility = "selected" selected_repository_ids = [ + var.compressed_tensors_id, var.llm-compressor_id, var.speculators_id, - var.vllm_id + var.vllm_id, ] } diff --git a/github/runner-groups/group-neural-magic/repo-ids.tf b/github/runner-groups/group-neural-magic/repo-ids.tf index 40d47b89..ffd25f0c 100644 --- a/github/runner-groups/group-neural-magic/repo-ids.tf +++ b/github/runner-groups/group-neural-magic/repo-ids.tf @@ -13,3 +13,7 @@ variable "speculators_id" { variable "vllm_id" { default = 599547518 } + +variable "compressed_tensors_id" { + default = 781003631 +}