summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormontezdesousa <79287829+montezdesousa@users.noreply.github.com>2024-02-07 12:13:29 +0000
committerGitHub <noreply@github.com>2024-02-07 12:13:29 +0000
commite77a67d609f205655ff5e0bdb65981058dd74944 (patch)
tree5f6ee1213f89365b6051726fd608ac5aefe6554f
parent6f159655f9e944b17d3bdb34deaf158eb675da1a (diff)
dont run base tests with v4 label (#6046)
-rw-r--r--.github/workflows/unit-test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index d9b43ad11f8..7b386532934 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -15,7 +15,7 @@ on:
branches:
- develop
- main
- types: [opened, synchronize, edited, closed]
+ types: [opened, synchronize, edited, closed, labeled, unlabeled]
push:
branches:
- release/*
@@ -61,7 +61,7 @@ jobs:
name: Base Tests - Ubuntu-latest - Python 3.9
needs: [check-files-changed]
runs-on: ubuntu-latest
- if: needs.check-files-changed.outputs.check-changes == 'true' && github.event.pull_request.base.ref == 'develop'
+ if: needs.check-files-changed.outputs.check-changes == 'true' && github.event.pull_request.base.ref == 'develop' && !contains(github.event.pull_request.labels.*.name, 'v4')
steps:
- name: Checkout Code
uses: actions/checkout@v3