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 d6ca02a commit 82a4607Copy full SHA for 82a4607
.github/workflows/sonar-scan.yml
@@ -3,14 +3,17 @@ name: Sonar
3
push:
4
branches:
5
- main
6
- pull_request:
+ pull_request_target:
7
8
9
schedule:
10
- cron: 0 16 * * *
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
+ if: contains(github.event.pull_request.labels.*.name, 'tests can be run') ||
15
+ github.event.pull_request.head.repo.full_name == github.repository ||
16
+ github.event_name != 'pull_request_target'
17
steps:
18
- uses: actions/checkout@v2
19
with:
0 commit comments