From a04adce1656880ad0d208eba5e07188c391c3548 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 22:55:28 +0000 Subject: [PATCH] ci: fix release drafter race condition Co-Authored-By: AJ Steers --- .github/workflows/release-drafter.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 6e999e7..059eaca 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -5,6 +5,10 @@ on: branches: - main +concurrency: + group: release-drafter + cancel-in-progress: false + permissions: contents: read @@ -16,7 +20,8 @@ jobs: runs-on: ubuntu-latest steps: # Drafts the next Release notes as Pull Requests are merged into "main" - - uses: release-drafter/release-drafter@v6 + # Pinned to v6.0.0 to avoid v6.1.0 bug: https://github.com/release-drafter/release-drafter/issues/1425 + - uses: release-drafter/release-drafter@v6.0.0 with: config-name: release-drafter.yml disable-autolabeler: true