From 1b35c2ce397f8a325aeef534e5051b4375db2c73 Mon Sep 17 00:00:00 2001 From: Oded Ben Ozer Date: Mon, 8 Apr 2024 12:17:41 +0200 Subject: [PATCH] Match yaml key name to config --- internal/pkg/configuration/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/configuration/config.go b/internal/pkg/configuration/config.go index ce665eb0..392677a7 100644 --- a/internal/pkg/configuration/config.go +++ b/internal/pkg/configuration/config.go @@ -24,7 +24,7 @@ type PromotionPr struct { type PromotionPath struct { Conditions Condition `yaml:"conditions"` - ComponentPathExtraDepth int `yaml:"componentPathDepth"` + ComponentPathExtraDepth int `yaml:"componentPathExtraDepth"` SourcePath string `yaml:"sourcePath"` PromotionPrs []PromotionPr `yaml:"promotionPrs"` }