From 014af21aba9e1c61192de225f27cc68c2971d5ea Mon Sep 17 00:00:00 2001 From: Tihomir Mateev Date: Mon, 2 Dec 2024 12:20:07 +0200 Subject: [PATCH] Test failures not reported because step is skipped --- .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 d1fdc656aa..2bc828614a 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 a0c6d54045..4761f89021 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