From cdbbf0967c68ecd98e7d6287c48b5e53392d37fe Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Wed, 24 Aug 2022 13:45:26 +0000 Subject: [PATCH] fix: enable draft mode fot nodes only tests --- --- a/.github/workflows/nodes-only-update.yml +++ b/.github/workflows/nodes-only-update.yml @@ -77,7 +77,7 @@ steps: -# - name: Skip if pull request is in Draft + - name: Skip if pull request is in Draft # `if: github.event.pull_request.draft == true` should be kept here, at # the step level, rather than at the job level. The latter is not # recommended because when the PR is moved from "Draft" to "Ready to @@ -92,8 +92,8 @@ # 4. Move it to "Ready for review"; now the workflow is passing (it was # skipped) and "Check reviews" is also passing (it won't be updated # until the workflow is finished) -# if: github.event.pull_request.draft == true -# run: exit 1 + if: github.event.pull_request.draft == true + run: exit 1 - name: Clean Workspace uses: AutoModality/action-clean@v1.1.0 -- gitstuff