From 7a89902657c68317a726a24d7820926ff31d2bdd Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sun, 24 Jan 2021 10:20:00 -0600 Subject: [PATCH] ci: Fix check for no checks https://github.community/t/needs-job-outputs-issue/149156 https://github.community/t/jobs-being-skipped-while-using-both-needs-and-if-unclear-why/18480 --- .github/workflows/pytest-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml index 415c20c6..c53602c9 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest name: CI Test needs: changes - if: ${{ fromJson(needs.changes.outputs.modules) }} != 'false' + if: needs.changes.outputs.modules == 'true' strategy: matrix: nxf_version: ['20.11.0-edge']