From 0cd2714af004becb71d4f65f2c471a91788dd422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Baran?= Date: Tue, 8 Oct 2024 15:38:23 +0200 Subject: [PATCH] Do not run CI in PR twice (#2082) --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bb1af3b77..1baf4bc553 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,11 @@ name: TileDB Python CI -on: [push, pull_request, workflow_dispatch] +on: + push: + branches: [dev] + pull_request: + branches: [dev] + workflow_dispatch: concurrency: group: ${{ github.head_ref || github.run_id }}