We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f339ba commit eebbacbCopy full SHA for eebbacb
.github/workflows/black_PR.yml renamed to .github/workflows/pull_format.yml
@@ -12,16 +12,22 @@ jobs:
12
continue-on-error: true
13
steps:
14
- uses: actions/checkout@v3
15
+ with:
16
+ ref: ${{ github.head_ref }}
17
+
18
- name: Set up Python ${{ matrix.python-version }}
19
uses: actions/setup-python@v4
20
with:
21
python-version: ${{ matrix.python-version }}
- - name: Install black
22
23
+ - name: Install Black
24
run: pip install black
- - name: run black
25
26
+ - name: Run Black
27
# run: black $(git ls-files '*.py')
28
run: black .
- - name: AutoCommit
29
30
+ - name: Commit Back
31
uses: stefanzweifel/git-auto-commit-action@v4
32
33
commit_message: Apply Code Formatter Change
0 commit comments