From ced3fb4f2ad52aa33c2b98a5a8896af8289a597f Mon Sep 17 00:00:00 2001 From: Thomas Baumann <39156931+brownbaerchen@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:48:51 +0100 Subject: [PATCH] Removed action for triggering codecov bot because it does not trigger the bot --- .github/workflows/trigger_coverage_bot.yml | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/trigger_coverage_bot.yml diff --git a/.github/workflows/trigger_coverage_bot.yml b/.github/workflows/trigger_coverage_bot.yml deleted file mode 100644 index 4f127b8871..0000000000 --- a/.github/workflows/trigger_coverage_bot.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- - -name: Trigger coverage bot - -on: - workflow_run: - workflows: ["CI pipeline for pySDC"] - types: ["completed"] - -jobs: - - Upload_to_Codecov: - runs-on: ubuntu-latest - - if: ${{ github.repository_owner == 'Parallel-in-Time' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.pull_requests != '' }} - - defaults: - run: - shell: bash -l {0} - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install virtual environment with Micromamba - uses: mamba-org/setup-micromamba@v1 - with: - environment-file: "etc/environment-postprocess.yml" - - - name: Downloading artifacts - uses: actions/download-artifact@v4 - with: - path: . - merge-multiple: true - run-id: ${{ github.event.workflow_run.id }} - github-token: ${{ secrets.ACTION_READ_TOKEN }} - - - name: Prepare artifacts - run: | - python -m coverage combine coverage_*.dat - python -m coverage xml - python -m coverage html - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV }} -