From 7ffe1bdfcfef18f0e73cde4dcd2ecac999931a7f Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Sat, 17 May 2025 14:26:14 -0400 Subject: [PATCH] Removes the if statements on CI --- .github/workflows/ci.yml | 13 ------------- .github/workflows/codeql.yml | 8 -------- 2 files changed, 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80d5cc8c..bc7cf1db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,14 +9,6 @@ on: jobs: codeValidation: - if: | - github.event_name == 'push' || - ( - github.event_name == 'pull_request' && - ( - contains(join(github.event.pull_request.labels.*.name), 'run-ci') - ) - ) runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -63,11 +55,6 @@ jobs: python3.11 -m pytest tests/ -p no:warnings containerBuild: - if: | - github.event_name == 'pull_request' && - ( - contains(join(github.event.pull_request.labels.*.name), 'run-ci') - ) runs-on: ubuntu-latest needs: - codeValidation diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3cf6659b..90855107 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,14 +20,6 @@ on: jobs: analyze: - if: | - github.event_name == 'push' || - ( - github.event_name == 'pull_request' && - ( - contains(join(github.event.pull_request.labels.*.name), 'run-ci') - ) - ) name: Analyze runs-on: ubuntu-latest permissions: