We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 423d7f9 commit 816a9feCopy full SHA for 816a9fe
1 file changed
.github/workflows/ci-workflow.yml
@@ -3,7 +3,7 @@ name: Python CI
3
on:
4
push:
5
branches: [ master ]
6
- pull_request_target:
+ pull_request:
7
8
9
jobs:
@@ -44,7 +44,7 @@ jobs:
44
uv tool run twine check dist/*
45
if: matrix.os != 'windows-latest'
46
- name: Upload coverage result
47
- if: github.repository_owner == 'msiemens'
+ if: github.repository_owner == 'msiemens' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
48
env:
49
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
50
run: |
0 commit comments