From 0362a6281a7d9f791c6e067938967ce514232c58 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Fri, 23 Feb 2024 12:12:44 -0800 Subject: [PATCH] Update LintDiff_report.kql: update the hardcoded strings to match code (#7741) --- .../kusto/functions/users/kojamroz/LintDiff_report.kql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/pipeline-witness/infrastructure/kusto/functions/users/kojamroz/LintDiff_report.kql b/tools/pipeline-witness/infrastructure/kusto/functions/users/kojamroz/LintDiff_report.kql index 745bc4d0f86..0fa06670dcb 100644 --- a/tools/pipeline-witness/infrastructure/kusto/functions/users/kojamroz/LintDiff_report.kql +++ b/tools/pipeline-witness/infrastructure/kusto/functions/users/kojamroz/LintDiff_report.kql @@ -29,9 +29,11 @@ lintDiffBuildLogs | extend Context = parse_json(raw) | extend PrUrl = strcat(Context.sourceRepoUri, "/pull/", Context.prNumber) ; -let lintDiffReportStartMarker = "momentOfTruth.lintDiff: --- Lint Violation Result ----" +// CODESYNC to https://devdiv.visualstudio.com/DevDiv/_git/openapi-alps?path=/private/azure-swagger-validation/azureSwaggerValidation/src/momentOfTruth.ts&version=GCc59d7623faf7ecac934d247581ddd6d1d78d6c28&line=394&lineEnd=394&lineStartColumn=16&lineEndColumn=76&lineStyle=plain&_a=contents +let lintDiffReportStartMarker = "momentOfTruth.lintDiff: ---- LintDiff Violations Report ----" ; -let lintDiffReportEndMarker = "---------- Linter Diff Results ----------" +// CODESYNC to https://devdiv.visualstudio.com/DevDiv/_git/openapi-alps?path=/private/azure-swagger-validation/azureSwaggerValidation/src/momentOfTruthPostProcessing.ts&version=GCc59d7623faf7ecac934d247581ddd6d1d78d6c28&line=371&lineEnd=371&lineStartColumn=17&lineEndColumn=56&lineStyle=plain&_a=contents +let lintDiffReportEndMarker = "---------- LintDiff Results ----------" ; let lintDiffReportStartLines = lintDiffBuildLogs | where Message has lintDiffReportStartMarker