From 2d33a0414642b60bfc67b6664cbaeefac6e0f64a Mon Sep 17 00:00:00 2001 From: Anagh Hegde Date: Tue, 10 Dec 2024 11:07:24 +0530 Subject: [PATCH] chore: remove the if condition as not supported in workflow file (#38015) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Remove the if condition in workflow as it is not supported ## Automation /ok-to-test tags="@tag.Sanity" ### :mag: Cypress test results > [!IMPORTANT] > 🟣 🟣 🟣 Your tests are running. > Tests running at: > Commit: b8e6ff5d395411dec84ac710ad1009c251c09488 > Workflow: `PR Automation test suite` > Tags: `@tag.Sanity` > Spec: `` >
Tue, 10 Dec 2024 05:27:10 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **New Features** - Introduced manual triggering for CI tests with input options for pull request numbers and previous workflow run IDs. - **Improvements** - Enhanced environment setup and caching mechanisms for Docker images. - Refined Cypress test setup for better dependency management and logging. - **Bug Fixes** - Improved job conditions for running tests based on repository name and event types. --- .github/workflows/ci-test-limited.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci-test-limited.yml b/.github/workflows/ci-test-limited.yml index d58b7cb1c2..e32ac5f9cc 100644 --- a/.github/workflows/ci-test-limited.yml +++ b/.github/workflows/ci-test-limited.yml @@ -41,20 +41,15 @@ jobs: # Service containers to run with this job. Required for running tests services: - # Label used to access the service container redis: - # Docker Hub image for Redis image: redis ports: - # Opens tcp port 6379 on the host and service container - 6379:6379 postgres: - if: github.base_ref == 'pg' || github.ref_name == 'pg' image: postgres:14 ports: - 5432:5432 mongo: - if: github.base_ref == 'release' || github.ref_name == 'release' image: mongo ports: - 27017:27017