From 4f7ef61d50b52ecd74f59b7e97baa5928c675e7b Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Tue, 24 Jan 2023 12:16:43 +0100 Subject: [PATCH] [Split] add branches and test only one one bundle --- .gitsplit.yml | 4 ++-- bin/generate-gitsplit | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitsplit.yml b/.gitsplit.yml index f154e8d126..573606a343 100644 --- a/.gitsplit.yml +++ b/.gitsplit.yml @@ -1,7 +1,7 @@ origins: - ^master$ - - '^\d+\.\d+$ #CoreShop Maintenance Branches' - - '^\d+\.\d+\.\d+$ #Tags' + - ^\d+\.\d+$ + - ^\d+\.\d+\.\d+$ splits: - { prefix: src/CoreShop/Component/Address, target: 'https://${GH_TOKEN}@github.com/coreshop/Address.git' } - { prefix: src/CoreShop/Bundle/AddressBundle, target: 'https://${GH_TOKEN}@github.com/coreshop/AddressBundle.git' } diff --git a/bin/generate-gitsplit b/bin/generate-gitsplit index 91d3d9ad8b..83cf3a7e0b 100755 --- a/bin/generate-gitsplit +++ b/bin/generate-gitsplit @@ -29,8 +29,8 @@ $find = static function (string $path) use ($root): array $config = [ 'origins' => [ '^master$', - '^\d+\.\d+$ #CoreShop Maintenance Branches', - '^\d+\.\d+\.\d+$ #Tags', + '^\d+\.\d+$', #CoreShop Branches + '^\d+\.\d+\.\d+$', #Tags ], 'splits' => [], ];