From 3c69770f3852362a43270381a4b766895774c480 Mon Sep 17 00:00:00 2001 From: Wenjie Du Date: Tue, 13 Aug 2024 14:39:30 +0800 Subject: [PATCH] fix: allow failure when PR gets merged before jobs get finished; --- .github/workflows/testing_ci.yml | 1 + .github/workflows/testing_daily.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/testing_ci.yml b/.github/workflows/testing_ci.yml index 43496169..f35211ca 100644 --- a/.github/workflows/testing_ci.yml +++ b/.github/workflows/testing_ci.yml @@ -84,6 +84,7 @@ jobs: - name: Submit the report uses: coverallsapp/github-action@master + continue-on-error: true with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: "coverage.lcov" diff --git a/.github/workflows/testing_daily.yml b/.github/workflows/testing_daily.yml index b71b74ed..707e76a3 100644 --- a/.github/workflows/testing_daily.yml +++ b/.github/workflows/testing_daily.yml @@ -62,6 +62,7 @@ jobs: - name: Submit the report uses: coverallsapp/github-action@master + continue-on-error: true with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: 'coverage.lcov'