From ecf4a27dd8aa28e9038471dac0c3dba6ff8a5b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rp=C3=A1d=20Csepi?= Date: Fri, 12 Jun 2026 11:30:09 +0200 Subject: [PATCH 1/3] fix: run CI checks on renovate branches to unblock pending branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Árpád Csepi --- .github/workflows/ci.yaml | 1 + .github/workflows/codeql.yml | 4 +++- .github/workflows/conventional_commits.yml | 3 ++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3de3411..a59512b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,7 @@ on: push: branches: - main + - renovate/** tags: - "v*.*.*" pull_request: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4c844b6..dc7d95e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -5,7 +5,9 @@ name: "CodeQL Advanced" on: push: - branches: ["main"] + branches: + - main + - renovate/** pull_request: branches: ["main"] schedule: diff --git a/.github/workflows/conventional_commits.yml b/.github/workflows/conventional_commits.yml index b1f8ce6..d4a85fe 100644 --- a/.github/workflows/conventional_commits.yml +++ b/.github/workflows/conventional_commits.yml @@ -3,9 +3,10 @@ name: commit-msg on: push: - # Run superlinter on pushes to default branch + # Run superlinter on pushes to default branch and Renovate branches branches: - main + - renovate/** # Run superlinter on pull request events pull_request: From 9e467d08d0e6fbef5e93e2c1e18d5e84b27aab0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rp=C3=A1d=20Csepi?= Date: Fri, 12 Jun 2026 11:30:36 +0200 Subject: [PATCH 2/3] fix: restrict only agntcy-automation bot can push to renovate branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Árpád Csepi --- .github/settings.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/settings.yml b/.github/settings.yml index dcb920d..872cbe1 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -113,3 +113,16 @@ repository: # apps: [] # users: [] # teams: [] + +branches: + - name: renovate/* + protection: + # Dependency update branches: only the Renovate automation app may push. + required_pull_request_reviews: null + required_status_checks: null + enforce_admins: true + restrictions: + apps: + - agntcy-automation + users: [] + teams: [] From ce722e36f150ae8637726d754f07463ba9ed1f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rp=C3=A1d=20Csepi?= Date: Fri, 12 Jun 2026 11:33:55 +0200 Subject: [PATCH 3/3] fix: run schedule 3 days instead of 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Árpád Csepi --- renovate.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 74dcdf4..d4f56a9 100644 --- a/renovate.json +++ b/renovate.json @@ -32,7 +32,11 @@ ], "enabled": true, "minimumReleaseAge": "7 days", - "schedule": ["before 6am on Monday"], + "schedule": [ + "before 6am on Monday", + "before 6am on Wednesday", + "before 6am on Friday" + ], "prCreation": "not-pending", "enabledManagers": [ "custom.regex",