From 524ba37051f7c87dc73eb5e746a1f86bdbf9f1aa Mon Sep 17 00:00:00 2001 From: Maria Zhelezova <43066499+mazhelez@users.noreply.github.com> Date: Tue, 30 Sep 2025 09:43:08 +0200 Subject: [PATCH 1/4] Remove deprecated settings --- .github/AL-Go-Settings.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index 993c9ab..ca0cc82 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -2,9 +2,6 @@ "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/32e66d69cfd2c1e3eca39e416e27c6aa58de6df3/Actions/.Modules/settings.schema.json", "type": "AppSource App", "templateUrl": "https://github.com/microsoft/AL-Go-AppSource@preview", - "NextMajorSchedule": "0 2 * * 0", - "NextMinorSchedule": "0 2 * * 6", - "CurrentSchedule": "0 2 * * 1,2,3,4,5", "runs-on": "ubuntu-latest", "unusedALGoSystemFiles": [ "AddExistingAppOrTestApp.yaml", From 185f270df6ea065394a44609abefca30eb2aebe2 Mon Sep 17 00:00:00 2001 From: Maria Zhelezova <43066499+mazhelez@users.noreply.github.com> Date: Tue, 30 Sep 2025 09:44:25 +0200 Subject: [PATCH 2/4] Add workflow schedule to settings Added workflow schedule for automated runs. --- .github/Test Current.settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/Test Current.settings.json b/.github/Test Current.settings.json index 2ce0331..d8bc00f 100644 --- a/.github/Test Current.settings.json +++ b/.github/Test Current.settings.json @@ -2,5 +2,8 @@ "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/32e66d69cfd2c1e3eca39e416e27c6aa58de6df3/Actions/settings.schema.json", "artifact": "////latest", "cacheImageName": "", - "versioningStrategy": 15 + "versioningStrategy": 15, + "workflowSchedule": { + "cron": "0 2 * * 1,2,3,4,5" + } } From 147a47dc417d637a672fa180b2cc410c380e6132 Mon Sep 17 00:00:00 2001 From: Maria Zhelezova <43066499+mazhelez@users.noreply.github.com> Date: Tue, 30 Sep 2025 09:44:52 +0200 Subject: [PATCH 3/4] Add workflow schedule to settings.json --- .github/Test Next Major.settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/Test Next Major.settings.json b/.github/Test Next Major.settings.json index 7ba6ede..a6abde8 100644 --- a/.github/Test Next Major.settings.json +++ b/.github/Test Next Major.settings.json @@ -2,5 +2,8 @@ "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/32e66d69cfd2c1e3eca39e416e27c6aa58de6df3/Actions/settings.schema.json", "artifact": "////nextmajor/{INSIDERSASTOKEN}", "cacheImageName": "", - "versioningStrategy": 15 + "versioningStrategy": 15, + "workflowSchedule": { + "cron": "0 2 * * 0" + } } From f4a4fd2048454437c7a1eef0e4e4d69671ba5f51 Mon Sep 17 00:00:00 2001 From: Maria Zhelezova <43066499+mazhelez@users.noreply.github.com> Date: Tue, 30 Sep 2025 09:47:12 +0200 Subject: [PATCH 4/4] Add workflowSchedule to settings.json Added workflowSchedule with cron for scheduling. --- .github/Test Next Minor.settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/Test Next Minor.settings.json b/.github/Test Next Minor.settings.json index f5afbca..ba8c15a 100644 --- a/.github/Test Next Minor.settings.json +++ b/.github/Test Next Minor.settings.json @@ -2,5 +2,8 @@ "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/32e66d69cfd2c1e3eca39e416e27c6aa58de6df3/Actions/settings.schema.json", "artifact": "////nextminor/{INSIDERSASTOKEN}", "cacheImageName": "", - "versioningStrategy": 15 + "versioningStrategy": 15, + "workflowSchedule": { + "cron": "0 2 * * 6" + } }