From f3186ea51fdf6c3202e9fc7c4c933dcb3b21cd59 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Fri, 19 Dec 2025 03:44:44 +0900 Subject: [PATCH] ci: add concurrency groups to workflows Add concurrency configuration to CI and release-please workflows to prevent duplicate runs on the same branch/PR. --- .github/workflows/ci.yml | 4 ++++ .github/workflows/release-please.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3b1536..a4c360e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ secrets.TURBO_TEAM }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a6a1bd9..588d7a2 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -5,6 +5,10 @@ on: branches: - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + permissions: contents: write pull-requests: write