From 9726670dea4faf041731a7de1e971dc79b79903b Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Tue, 17 Mar 2026 19:51:19 -0400 Subject: [PATCH] feat: only one CI job at a time per PR This prevents the Gitea runner from getting clogged up with stale CI checks. --- .gitea/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f40f322..f5f6cec 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,5 +1,9 @@ name: CI +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + on: push: branches: [main]