Remove the redundant black check in CI (#11790)

We have two black checks in CI for different scopes (PR, full repo). Now that the repo level black check is required, we can remove the PR level check.
This commit is contained in:
Justin Chu 2022-06-08 16:58:43 -07:00 committed by GitHub
parent 79db92f8fe
commit 913100885b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: black
uses: reviewdog/action-black@v3
- name: flake8
uses: reviewdog/action-flake8@v3
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check, github-check, github-pr-review].
@ -23,13 +23,6 @@ jobs:
# GitHub Status Check won't become failure with a warning.
level: error
filter_mode: file
- name: flake8
uses: reviewdog/action-flake8@v3
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-check
level: error
filter_mode: file
- name: pyflakes
uses: reviewdog/action-pyflakes@v1
with: