From 9f2e966662406cccc1b6c84fb7198bc429b40274 Mon Sep 17 00:00:00 2001 From: Maksym Buz Date: Thu, 4 Sep 2025 13:43:29 +0200 Subject: [PATCH] TEST: Replaced condition to not trigger the job if commit done by Gitea bot --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8ac21e4..fe185e7 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -14,7 +14,7 @@ jobs: check-version: runs-on: ubuntu-latest # Skip the execution if the commit message contains [ci skip] - if: ${{ !contains(gitea.event.head_commit.message, '[ci skip]') }} + if: ${{ gitea.event.head_commit.author.name != 'Gitea Action' }} outputs: should_build: ${{ steps.version-check.outputs.should_build }} latest_version: ${{ steps.version-check.outputs.latest_version }}