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 09:45:20 +01:00
committed by GitHub
parent ba811d641d
commit 2e3a2526c0
+6 -1
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: