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: