From f8c0d247e896db50e8012e2381946a2ab891328c Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 31 May 2026 14:59:58 -0500 Subject: [PATCH] fix(ci): remove concurrency group that silently dropped pr-review runs Gitea 1.22 cancel-in-progress does not behave like GitHub Actions: when a new synchronize event arrives while a review is running, instead of cancelling the running job and starting a new one, it drops the new run silently. Remove the concurrency block entirely so every commit to a PR gets its own review run. --- .gitea/workflows/pr-review.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/workflows/pr-review.yml b/.gitea/workflows/pr-review.yml index 6e7e47b9..3e1eb9aa 100644 --- a/.gitea/workflows/pr-review.yml +++ b/.gitea/workflows/pr-review.yml @@ -4,9 +4,6 @@ on: pull_request: types: [opened, synchronize, reopened, edited] -concurrency: - group: pr-review-${{ github.event.pull_request.number }} - cancel-in-progress: true jobs: review: