chore(checks): skip draft PRs (#43519)

* chore(checks): skip draft PRs for PR checks action
switch_to_internal_or_external_alertmanagers^2
Timur Olzhabayev 3 years ago committed by GitHub
parent 36983d8d3b
commit fffd4c10b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/pr-checks.yml

@ -3,7 +3,9 @@ on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
- unlabeled
issues:
@ -14,6 +16,7 @@ on:
jobs:
main:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Checkout Actions
uses: actions/checkout@v2

Loading…
Cancel
Save