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

* chore(checks): skip draft PRs for PR checks action
This commit is contained in:
Timur Olzhabayev 2022-01-17 19:16:33 +01:00 committed by GitHub
parent 36983d8d3b
commit fffd4c10b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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