From b0a4eb92224f7e1283992fcc8fba3b7cda60535f Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Wed, 24 Apr 2024 09:45:07 +0200 Subject: [PATCH] Update trigger for gitsplit workflow The gitsplit workflow trigger has been updated from running on any tag push and release publication to running only on push to any branch ending in ".x". This should create a more targeted and efficient workflow. --- .github/workflows/gitsplit.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gitsplit.yml b/.github/workflows/gitsplit.yml index 8229971ca..151819a47 100644 --- a/.github/workflows/gitsplit.yml +++ b/.github/workflows/gitsplit.yml @@ -1,10 +1,8 @@ name: gitsplit on: push: - tags: - - '*' - release: - types: [published] + branches: + - "*.x" jobs: gitsplit: