From c9e3b7f349e74f5024f4781ac093910a6e777239 Mon Sep 17 00:00:00 2001 From: Athou Date: Sat, 1 Feb 2025 14:19:50 +0100 Subject: [PATCH] renovate already builds on push, don't trigger twice when it opens a PR --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9493abe0..9b12eee6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ env: jobs: build: + if: github.event_name != 'pull_request' || github.actor != 'renovate[bot]' # renovate already triggers the build on pushes + strategy: matrix: os: [ "ubuntu-latest", "ubuntu-24.04-arm", "windows-latest" ] @@ -162,6 +164,7 @@ jobs: runs-on: ubuntu-latest needs: - build + - docker permissions: contents: write if: github.ref_type == 'tag'