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 be00beb commit 0b78decCopy full SHA for 0b78dec
.github/workflows/ci-tests.yml
@@ -103,9 +103,9 @@ jobs:
103
pip install -U pip setuptools wheel
104
pip install tox tox-gh-actions
105
106
- - if: ${{ matrix.step == 'pydocstyle' }}
107
- name: Create local branch main == origin/main for diff-quality
108
- run: git branch main origin/main
+ - if: ${{ matrix.step == 'pydocstyle' && github.event_name == 'pull_request'}}
+ name: Create local branch for diff-quality for PRs
+ run: git branch ${{github.base_ref}} origin/${{github.base_ref}}
109
110
- name: Test with tox
111
run: tox
0 commit comments