From 022f5879f73b1a99d6119ee07ccdfa326c58d224 Mon Sep 17 00:00:00 2001 From: Karthik K N Date: Fri, 9 Sep 2022 14:00:42 +0530 Subject: [PATCH] Read labels from provider repos tiltfile --- Tiltfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tiltfile b/Tiltfile index e2982f73e31e..95d11782d385 100644 --- a/Tiltfile +++ b/Tiltfile @@ -155,6 +155,8 @@ def load_provider_tiltfiles(): for item in provider_details: provider_name = item["name"] provider_config = item["config"] + if "label" in item: + provider_config["label"] = item.get("label") if "context" in provider_config: provider_config["context"] = repo + "/" + provider_config["context"] else: