From fbbd3402b3500369190a05ec5e202b60dfca2680 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 23 Mar 2026 09:58:48 -0500 Subject: [PATCH] chore: skip staging deploy for Renovate PRs (#124) Dependency update PRs from Renovate don't need to be deployed to staging. Uses job-level condition to check head branch prefix. Reviewed-on: https://git.mcintire.me/graham/towerops-web/pulls/124 --- .forgejo/workflows/staging.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.forgejo/workflows/staging.yaml b/.forgejo/workflows/staging.yaml index 1e7a0020..b1cc5671 100644 --- a/.forgejo/workflows/staging.yaml +++ b/.forgejo/workflows/staging.yaml @@ -15,6 +15,7 @@ concurrency: jobs: deploy-staging: name: Deploy to Dokku Staging + if: ${{ !startsWith(github.head_ref, 'renovate/') }} runs-on: ubuntu-22.04 steps: - name: Checkout code