From d0d7ee12159cd9ac1735cc17e2a0827e09f7d249 Mon Sep 17 00:00:00 2001 From: Maxwell Weru Date: Wed, 20 Sep 2023 20:31:42 +0300 Subject: [PATCH] Exclude JobDefinitionPath and UpdateJobId from sensitive data masking --- server/Tingle.Dependabot/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/Tingle.Dependabot/Program.cs b/server/Tingle.Dependabot/Program.cs index a8e0a732..64d2c602 100644 --- a/server/Tingle.Dependabot/Program.cs +++ b/server/Tingle.Dependabot/Program.cs @@ -24,6 +24,8 @@ { options.ExcludeProperties.AddRange(new[] { "ExecutionId", + "JobDefinitionPath", + "UpdateJobId", }); }); });