From 1da7d03e0466a5f78bd3a860c8e69eceb3a6a29c Mon Sep 17 00:00:00 2001 From: kudima03 Date: Tue, 8 Sep 2026 13:12:55 +0300 Subject: [PATCH] fix(ci): don't fail build when coverage PR comment can't be posted Fork PRs get a read-only GITHUB_TOKEN, so posting the coverage comment always fails with "Resource not accessible by integration" and takes down an otherwise-passing build. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 354f257..a44451b 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -58,7 +58,7 @@ jobs: thresholds: "${{ env.COVERAGE_THRESHOLD }} ${{ env.COVERAGE_WARNING_THRESHOLD }}" - name: Add Coverage PR Comment uses: marocchino/sticky-pull-request-comment@v3 - if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' + continue-on-error: true with: recreate: true path: code-coverage-results.md