We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce209b commit 2b5ddb3Copy full SHA for 2b5ddb3
1 file changed
.github/workflows/black.yml
@@ -1,6 +1,13 @@
1
name: Black
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
+
11
12
jobs:
13
build:
@@ -27,3 +34,6 @@ jobs:
27
34
git config --local user.name "GitHub Action"
28
35
git add .
29
36
git diff-index --quiet HEAD || git commit -m "Format Python code with Black"
37
+ - name: Push changes
38
+ run: |
39
+ git push origin master
0 commit comments