From 3064ce48e23880dce9374f5b219b00279cfc5703 Mon Sep 17 00:00:00 2001 From: Rody Davis Date: Fri, 26 Jun 2026 20:04:03 -0700 Subject: [PATCH] ci: limit renovate workflow concurrency to one at a time --- .gitea/workflows/renovate.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index 4cd665c..2799a21 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -7,6 +7,10 @@ on: - main workflow_dispatch: # Allows manual triggering from the Gitea UI +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: renovate: runs-on: ubuntu-latest