From b26098b5e5834fa733218b593274d5902a41b4bf Mon Sep 17 00:00:00 2001 From: spicyfalafel <285574@niuitmo.ru> Date: Mon, 23 Sep 2024 14:54:46 +0300 Subject: [PATCH] chore: fix if in lint --- .github/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index a46942a..eee1f54 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -69,7 +69,7 @@ jobs: lint-python: needs: detect-changes - if: ${{ needs.detect-changes.outputs.python-changed == 'true' }} + if: ${{ needs.detect-changes.outputs.python-changed }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4