From af69acddc15f1aad3594e2638a98beee78a9331b Mon Sep 17 00:00:00 2001 From: Johnpaul Date: Fri, 16 Jan 2026 21:54:36 +0100 Subject: [PATCH] ci: Exclude version-bump branches from e2e workflow pull request triggers and remove the conditional job skip. --- .github/workflows/ci-tests-e2e.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests-e2e.yaml b/.github/workflows/ci-tests-e2e.yaml index bdf6d43e5..30a11aef1 100644 --- a/.github/workflows/ci-tests-e2e.yaml +++ b/.github/workflows/ci-tests-e2e.yaml @@ -6,7 +6,7 @@ on: branches: [main, master, core/*, desktop/*] pull_request: branches-ignore: - [wip/*, draft/*, temp/*, vue-nodes-migration, sno-playwright-*] + [wip/*, draft/*, temp/*, vue-nodes-migration, sno-playwright-*, version-bump-*] # Run after i18n workflow completes for version-bump PRs workflow_run: workflows: ['i18n: Update Core'] @@ -19,8 +19,6 @@ concurrency: jobs: setup: runs-on: ubuntu-latest - # Skip version-bump PRs on pull_request (they run via workflow_run after i18n completes) - if: ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'version-bump-')) }} steps: - name: Checkout repository uses: actions/checkout@v5