From 502a95cda23b5b881592bdb9e89de1b06980494e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Fei?= Date: Fri, 24 Apr 2026 17:10:03 +0200 Subject: [PATCH] chore: enable Renovate's auto-merge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Niccolò Fei --- .github/workflows/continuous-delivery.yml | 4 +++- renovate.json | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 88ac715..4fd243e 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -1,5 +1,6 @@ name: continuous-delivery on: + pull_request: workflow_dispatch: inputs: cnpg_branch: @@ -80,10 +81,11 @@ jobs: revision: ${{ github.sha }} pgMajor: ${{ env.PG_MAJOR }} with: - push: true + push: ${{ github.event_name != 'pull_request' }} # Get a list of the images that were built and pushed. We only care about a single tag for each image. - name: Generated images + if: github.event_name != 'pull_request' id: images env: BUILD_METADATA: ${{ steps.build.outputs.metadata }} diff --git a/renovate.json b/renovate.json index 8126192..ae38724 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,11 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended" + "config:recommended", + "docker:pinDigests", + ":gitSignOff", + ":automergeMinor", + ":automergeDigest" ], "prConcurrentLimit": 5, "semanticCommits": "enabled",