From 28a4154d6ad7f8309ca5affae9e69f5da4c38e16 Mon Sep 17 00:00:00 2001 From: Tihomir Krasimirov Mateev Date: Mon, 2 Dec 2024 14:26:29 +0100 Subject: [PATCH] Test failures not reported because step is skipped (#3067) --- .github/workflows/integration.yml | 1 + .github/workflows/release-drafter.yml | 9 +-------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index d1fdc656a..2bc828614 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -59,6 +59,7 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} - name: Upload test failure reports to Codecov uses: codecov/test-results-action@v1 + if: always() # always upload test results to include test failures with: fail_ci_if_error: false files: ./target/surefire-reports/TEST*,./target/failsafe-reports/TEST* diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index a0c6d5404..4761f8902 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -1,13 +1,6 @@ name: Release Drafter -on: - push: - # branches to consider in the event; optional, defaults to all - branches: - - '[0-9].*' - # pull_request event is required only for autolabeler - pull_request: - types: [opened, reopened, synchronize] +on: workflow_dispatch permissions: contents: read