From ac61eb2b125ee9891ae3290f770e6ee36c07535d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 19 May 2020 12:01:41 +0200 Subject: .github/workflows: remove redundant step status check According to docs, this is the default. --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43c727f78..f0677240d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,6 @@ jobs: arch: runs-on: ubuntu-latest needs: [smoke] - if: ${{ needs.smoke.result == 'success' }} steps: - name: checkout uses: actions/checkout@v2 @@ -50,7 +49,6 @@ jobs: fuzzit: runs-on: ubuntu-latest needs: [smoke] - if: ${{ needs.smoke.result == 'success' }} steps: - name: checkout uses: actions/checkout@v2 -- cgit mrf-deployment