Browse Source

not running tests, lint and audit when draft pr (#652)

* not running tests, lint and audit when draft pr

* fixed syntax

* fixed syntax

* Revert "fixed syntax"

This reverts commit 80b82c734b.
pull/654/head
J G 3 years ago committed by GitHub
parent
commit
8a0e58f160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/staging_pipeline.yml

3
.github/workflows/staging_pipeline.yml

@ -14,6 +14,7 @@ defaults:
jobs: jobs:
test: test:
name: Test name: Test
if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
services: services:
@ -72,6 +73,7 @@ jobs:
lint: lint:
name: Lint name: Lint
if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -99,6 +101,7 @@ jobs:
audit: audit:
name: Audit dependencies name: Audit dependencies
if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save