We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc311b commit 2ff09c0Copy full SHA for 2ff09c0
.github/workflows/ci.yml
@@ -10,6 +10,7 @@ jobs:
10
webui:
11
name: WebUI Lint & Typecheck
12
runs-on: ubuntu-latest
13
+ if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
14
defaults:
15
run:
16
working-directory: webui
.github/workflows/osv-scanner.yml
@@ -18,7 +18,7 @@ permissions:
18
19
jobs:
20
scan-pr:
21
- if: github.event_name == 'pull_request' || github.event_name == 'merge_group'
+ if: (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group'
22
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@v2.3.2
23
24
scan-scheduled:
0 commit comments