ci: check for draft pr for cypress test run (#1212)

* ci: check for draft pr for cypress test run

* chore: add ready_for_review pr type for ci
This commit is contained in:
Matthew Russell 2022-09-02 01:45:20 -07:00 committed by GitHub
parent ba811d641d
commit 2e3a2526c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,12 +6,17 @@ on:
- master
- develop
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
pr:
name: Run capsule tests - PR
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == false }}
env:
GO111MODULE: 'on'
steps: