From 5e0c52afcbd9a65afb514213e08cd4c67ebe40ea Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Aug 2026 20:10:52 +0200 Subject: [PATCH] AAE-50678 SonarCloud scan on daily cron instead of every develop push (#12184) * ci: change sonar-develop workflow to run on daily cron instead of every push to develop Co-authored-by: eromano <1030050+eromano@users.noreply.github.com> * ci: add pull-requests: read permission to sonar-develop workflow Co-authored-by: eromano <1030050+eromano@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: eromano <1030050+eromano@users.noreply.github.com> --- .github/workflows/sonar-develop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sonar-develop.yml b/.github/workflows/sonar-develop.yml index bb8d17828f..83bd79b0e7 100644 --- a/.github/workflows/sonar-develop.yml +++ b/.github/workflows/sonar-develop.yml @@ -1,9 +1,8 @@ name: "SonarCloud Full Scan (develop)" on: - push: - branches: - - develop + schedule: + - cron: '0 5 * * *' workflow_dispatch: {} concurrency: @@ -12,6 +11,7 @@ concurrency: permissions: contents: read + pull-requests: read jobs: full-unit-tests-and-sonar-scan: