From 4f5a0c027a3cdbdc2a5b2da9f5823b21f8c5901f Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Thu, 23 Sep 2021 16:48:45 +0530 Subject: [PATCH] ci: Remove unneeded checks and services (#7759) --- .github/workflows/github-release.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index b191647acd..95c982c065 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -106,25 +106,6 @@ jobs: working-directory: app/server runs-on: ubuntu-latest - # Only run this workflow for internally triggered events - if: | - github.event_name == 'workflow_dispatch' || - github.event_name == 'push' || - (github.event_name == 'pull_request_review' && github.event.review.state == 'approved') - - # 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 - mongo: - image: mongo - ports: - - 27017:27017 steps: - name: Checkout the code