From 261df2f0ab3191c6be1f05af299a2f4f8f75949a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Vu=C4=8Dica?= Date: Wed, 18 Sep 2024 00:08:39 +0000 Subject: [PATCH] .github/workflows: Fix typo invoking action-junit-report (bad indentation). --- .github/workflows/ci-bazel.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-bazel.yml b/.github/workflows/ci-bazel.yml index 91115cb4..0272b80a 100644 --- a/.github/workflows/ci-bazel.yml +++ b/.github/workflows/ci-bazel.yml @@ -123,11 +123,11 @@ jobs: # to run as triggered by these workflows in another job, which might then # work on pull requests as well. This needs further investigation. - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 - if: success() || failure() # always run even if the previous step fails - with: - commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow - report_paths: 'bazel-testlogs/**/test.xml' + uses: mikepenz/action-junit-report@v4 + if: success() || failure() # always run even if the previous step fails + with: + commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow + report_paths: 'bazel-testlogs/**/test.xml' continue-on-error: true bazel_build_buildbuddy: runs-on: ubuntu-latest