From 9ad9bf92a5821cda596e659a62bcf78dc5d8510c Mon Sep 17 00:00:00 2001 From: Alexander Minkin Date: Fri, 31 Jan 2025 18:58:40 +0300 Subject: [PATCH] ci(actions): remove condition from build-base.yml build-base.yml doesn't run on pushes oops haha --- .github/workflows/build-base.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/build-base.yaml b/.github/workflows/build-base.yaml index 3d93ad3c..587ce3e7 100644 --- a/.github/workflows/build-base.yaml +++ b/.github/workflows/build-base.yaml @@ -12,12 +12,6 @@ env: jobs: build-cli: runs-on: ubuntu-latest - - # 'push' runs on inner branches, 'pull_request' will run only on outer PRs - if: > - github.event_name == 'push' - || (github.event_name == 'pull_request' - && github.event.pull_request.head.repo.full_name != github.repository) steps: - uses: actions/checkout@v3 @@ -48,12 +42,6 @@ jobs: build-apache: runs-on: ubuntu-latest - - # 'push' runs on inner branches, 'pull_request' will run only on outer PRs - if: > - github.event_name == 'push' - || (github.event_name == 'pull_request' - && github.event.pull_request.head.repo.full_name != github.repository) steps: - uses: actions/checkout@v3