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 2b003ee commit 8677645Copy full SHA for 8677645
.github/workflows/testsuite.yml
@@ -31,8 +31,8 @@ jobs:
31
changed:
32
name: "Check changed files"
33
runs-on: ubuntu-latest
34
- permissions:
35
- pull-requests: read
+ #permissions:
+ # pull-requests: read
36
outputs:
37
run_tests: ${{ steps.filter.outputs.run_tests }}
38
steps:
@@ -63,7 +63,7 @@ jobs:
63
# Don't run tests if the branch name includes "-notests".
64
# Only run tests if files that affect tests have changed.
65
needs: changed
66
- if: ${{ needs.changed.outputs.run_tests == 'true' && !contains(github.ref, '-notests') }}
+ if: ${{ !contains(github.ref, '-notests') && needs.changed.outputs.run_tests == 'true' && !contains(github.ref, '-notests') }}
67
68
env:
69
TOX_GH_MAJOR_MINOR: "${{ matrix.python-version }}"
0 commit comments