Skip to content

Commit 5e25324

Browse files
committed
Add Python Black Suggest for PR reviews
Signed-off-by: Yong Tang <[email protected]>
1 parent c1f14ed commit 5e25324

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/suggest.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Review Suggestion
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
black:
10+
name: Python Black
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: psf/black@stable
15+
with:
16+
options: "--verbose"
17+
version: "21.10b0"
18+
- uses: reviewdog/action-suggester@v1

0 commit comments

Comments
 (0)