From 4d45399604c7930756360a278c8c8b454e51a9fe Mon Sep 17 00:00:00 2001 From: aholstrup1 Date: Tue, 30 Jun 2026 16:28:46 +0200 Subject: [PATCH] Trigger full PR build on changes under src/Layers Add a fullBuildPatterns entry so any change under src/Layers forces a full Pull Request build. These layer folders are not referenced by any AL-Go project's appFolders/testFolders, so incremental builds matched such changes to zero projects and skipped every build job. Keeping incremental builds enabled preserves fast PR builds for normal app changes. --- .github/AL-Go-Settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index 36b67c7987..6aaa3a19f4 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -141,5 +141,8 @@ "onPull_Request": true, "onSchedule": false, "mode": "modifiedApps" - } + }, + "fullBuildPatterns": [ + "src/Layers/*" + ] }