Fix GitHub Actions condition (#2338)

* fix if condition

* fix
This commit is contained in:
Arun
2025-12-13 18:57:03 +05:30
committed by GitHub
parent 98df056331
commit 37ae76b9c2
+1 -1
View File
@@ -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