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:
parent
ba811d641d
commit
2e3a2526c0
7
.github/workflows/capsule-cypress.yml
vendored
7
.github/workflows/capsule-cypress.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user