From 7f5ddaf930ea2c7ee0c34afe6d3a9fc320d9b23c Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Sun, 3 Jul 2022 03:29:09 -0700 Subject: [PATCH] Ignore pushes to the ops branches --- .github/workflows/cypress.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 918434a93..22031b5db 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -3,6 +3,8 @@ name: Cypress Tests on: pull_request: types: [ opened, review_requested, synchronize ] + branches-ignore: + - 'ops/**' jobs: cypress: if: "!contains(github.event.pull_request.labels.*.name, 'ops')"