Skip to content

Commit

Permalink
Merge branch 'main' into factory
Browse files Browse the repository at this point in the history
  • Loading branch information
iranzo committed Jun 16, 2022
2 parents ac874e5 + 68c722a commit 2b40704
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ on:
paths:
- 'ui/**'
types: [labeled,synchronize]
pull_request_review:
types: [submitted, edited]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
if: (!contains(github.event.label.name, 'skip-ci-ui') || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'test-ci-ui')
if: (!contains(github.event.label.name, 'skip-ci-ui') && !contains(github.event.pull_request.labels.*.name, 'skip-ci-ui')) || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'test-ci-ui')
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max-old-space-size=8192'
Expand Down

0 comments on commit 2b40704

Please sign in to comment.