Merge pull request #1923 from knorrium/knorrium/skip_tests_on_ops_tag

Skip tests when the ops label is used
This commit is contained in:
wiz 2022-07-03 19:33:15 +09:00 committed by GitHub
commit e086daeecb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,13 @@
name: Cypress Tests
on: [push, pull_request]
on:
pull_request:
types: [ opened, review_requested, synchronize ]
branches-ignore:
- 'ops/**'
jobs:
cypress:
if: "!contains(github.event.pull_request.labels.*.name, 'ops')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false