From 2aa54e37a246bdece3741590b3b5c33da503e34a Mon Sep 17 00:00:00 2001 From: Tvishi Agarwal Date: Thu, 9 Apr 2026 21:01:48 +0100 Subject: [PATCH] Add concurrency control to update workflow --- .github/workflows/update.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 4a893ed..68877b6 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -14,6 +14,10 @@ on: permissions: contents: write +concurrency: + group: fx-radar-data-main + cancel-in-progress: true + jobs: generate: runs-on: ubuntu-latest @@ -21,6 +25,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5