We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce7811e commit b9d7969Copy full SHA for b9d7969
1 file changed
.github/workflows/python.yml
@@ -20,7 +20,7 @@ jobs:
20
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request_target' && !contains(github.event.pull_request.labels.*.name, 'skip-sample-tests')) }}
21
outputs:
22
should_run: 'true'
23
- is_fork: ${{ github.event_name == 'pull_request_target' && (github.event.pull_request.head.repo.fork || github.event.pull_request.user.login == 'dependabot[bot]') }}
+ is_fork: ${{ github.event_name == 'pull_request_target' && (github.event.pull_request.head.repo.full_name != github.repository || github.event.pull_request.user.login == 'dependabot[bot]') }}
24
steps:
25
- run: echo "Evaluating workflow conditions"
26
0 commit comments