From fc3b5e85074cffe4abb0a262d4050d12ac24aa4c Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 14 Feb 2026 09:40:00 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Fix=20PR=20check=20job=20?= =?UTF-8?q?condition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit addresses an issue where the PR check job was not running as expected. The condition for triggering the job has been corrected to ensure it runs properly under all circumstances. --- .gitea/workflows/pr-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-check.yaml b/.gitea/workflows/pr-check.yaml index bcf3874..63c652d 100644 --- a/.gitea/workflows/pr-check.yaml +++ b/.gitea/workflows/pr-check.yaml @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest needs: [leak_test, lint_test] if: "${{ always() && ( - needs.leak_test.result != 'success' || + needs.leak_test.result != 'success' || needs.lint_test.result != 'success' ) }}" steps: