From e403a9a2376ee999683896c3a8e5489dbe569314 Mon Sep 17 00:00:00 2001 From: Manfred Zingl Date: Wed, 25 Oct 2023 09:41:39 +0200 Subject: [PATCH] run action also for branches with `/` in name --- .github/workflows/branches.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branches.yml b/.github/workflows/branches.yml index ef07ab23..5fb0199c 100644 --- a/.github/workflows/branches.yml +++ b/.github/workflows/branches.yml @@ -8,7 +8,7 @@ name: CI | Push on branches on: push: branches: - - "*" + - "**" - "!master" env: @@ -120,6 +120,6 @@ jobs: path: artifacts - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@v1 + uses: EnricoMi/publish-unit-test-result-action@v2 with: files: artifacts/test-results/**/*.xml