diff options
| author | Allen Hutchison <[email protected]> | 2025-05-28 17:09:13 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-28 17:09:13 -0700 |
| commit | c413988ae00f4a01003748c5e6fbf511da07ab06 (patch) | |
| tree | 9421ec14b309b948abb7d8569f558d8b6e685b78 | |
| parent | 9ee5eadac0d1763e502be33682e9f34bdfe58454 (diff) | |
fix(ci): Only run post_coverage_comment job on pull_request events (#588)
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09ee5078..835c6ccf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,7 +110,7 @@ jobs: name: Post Coverage Comment runs-on: ubuntu-latest needs: test - if: always() + if: always() && github.event_name == 'pull_request' continue-on-error: true permissions: contents: read # For checkout |
