# Codecov keeps reporting status on all commits, despite only\_pulls=true

**URL:** https://community.codecov.com/t/codecov-keeps-reporting-status-on-all-commits-despite-only-pulls-true/1687
**Category:** Bug Fixes
**Created:** [July 2, 2020, 1:11pm UTC](https://community.codecov.com/t/codecov-keeps-reporting-status-on-all-commits-despite-only-pulls-true/1687 "2020-07-02T13:11:56Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![marco-c](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.codecov.com/marco-c/32/908_2.png) [@marco-c](https://community.codecov.com/u/marco-c)
#### Post date: [July 2, 2020, 1:11pm UTC](https://community.codecov.com/t/codecov-keeps-reporting-status-on-all-commits-despite-only-pulls-true/1687/1 "2020-07-02T13:11:56Z")

</div>

### Description

I’ve created a .codecov.yml where I set only\_pulls to true, expecting coverage reports on pull requests only. Instead, codecov is reporting a status on commits pushed to the master branch too.

### Repository

> **[Commits · mozilla/bugbug](https://github.com/mozilla/bugbug/commits/master)**
>
> Platform for Machine Learning projects on Software Engineering - Commits · mozilla/bugbug

### CI/CD

Taskcluster

### Uploader

Bash uploader.

### Commit SHAs

E.g. 35a3944230db1b5c748c1e90fbe76586afcd3313

### Codecov YAML

```
coverage:
  status:
    project:
      default:
        only_pulls: true

```

### Steps to Reproduce

1. Push a commit to the master branch

**Expected behavior:** Codecov doesn’t report status on commits pushed to the master branch

**Actual behavior:** Codecov does report status on commits pushed to the master branch

**Flakiness?** It happens all the time

---

<div class="post-metadata">

### Author: ![tom](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.codecov.com/tom/32/8_2.png) [@tom](https://community.codecov.com/u/tom)
#### Post date: [July 2, 2020, 2:20pm UTC](https://community.codecov.com/t/codecov-keeps-reporting-status-on-all-commits-despite-only-pulls-true/1687/2 "2020-07-02T14:20:14Z")

</div>

Hi @marco-c, it looks like it’s pushing the `patch` check.

```auto
coverage:
  status:
    project:
      default:
        only_pulls: true
    patch:
      default:
        only_pulls: true

```

---

<div class="post-metadata">

### Author: ![marco-c](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.codecov.com/marco-c/32/908_2.png) [@marco-c](https://community.codecov.com/u/marco-c)
#### Post date: [July 2, 2020, 10:50pm UTC](https://community.codecov.com/t/codecov-keeps-reporting-status-on-all-commits-despite-only-pulls-true/1687/3 "2020-07-02T22:50:32Z")

</div>

Thanks Tom, it’s working as expected now!
