From 37ae76b9c24c8f2060a12e433aec6bc00fa8bf0d Mon Sep 17 00:00:00 2001 From: Arun Date: Sat, 13 Dec 2025 18:57:03 +0530 Subject: [PATCH] Fix GitHub Actions condition (#2338) * fix if condition * fix --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 3b768a4..f58ebd8 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -10,7 +10,7 @@ on: jobs: lint: name: Lint Test - if: "${{ !endsWith(github.actor, '[bot]') }}" + if: ${{ !endsWith(github.actor, '[bot]') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4