From 92d1f986ed53dca375e653f0af9dbe9fc53e86cb Mon Sep 17 00:00:00 2001 From: Rody Davis Date: Fri, 26 Jun 2026 20:04:10 -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 3030495..586fb96 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -7,6 +7,10 @@ on: - master 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