From 3e33bfda272eb0c7909951b7d30c4eec5357b6f6 Mon Sep 17 00:00:00 2001 From: spetersenms Date: Thu, 2 Jul 2026 12:58:02 +0200 Subject: [PATCH] Fix duplicate fullBuildPatterns key in AL-Go-Settings.json The second fullBuildPatterns key (added in #8939) silently overrode the original patterns when parsed by ConvertFrom-Json, dropping build/*, src/rulesets/* and the workflow patterns. Merge src/Layers/* into the single existing array so all patterns trigger a full build again. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/AL-Go-Settings.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index 6aaa3a19f40..eba0efbe8e0 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -114,6 +114,7 @@ "fullBuildPatterns": [ "build/*", "src/rulesets/*", + "src/Layers/*", ".github/workflows/PullRequestHandler.yaml", ".github/workflows/_BuildALGoProject.yaml" ], @@ -141,8 +142,5 @@ "onPull_Request": true, "onSchedule": false, "mode": "modifiedApps" - }, - "fullBuildPatterns": [ - "src/Layers/*" - ] + } }