From f85e203319f17859bd5fbf3d417a76e8d2849726 Mon Sep 17 00:00:00 2001 From: Typed SIGTERM Date: Sat, 23 Aug 2025 13:36:10 +0800 Subject: [PATCH] ci: fix crowdin ci skipping --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2aa42287..6c46ead8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: build-test: name: Build Test (${{ matrix.app_name }}) - if: ${{ !(github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.label, 'i18n/')) }} + if: ${{ !(github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.label, 'moeru-ai:i18n/')) }} strategy: matrix: include: @@ -103,7 +103,7 @@ jobs: typecheck: name: Type Check runs-on: ubuntu-latest - if: ${{ !(github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.label, 'i18n/')) }} + if: ${{ !(github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.label, 'moeru-ai:i18n/')) }} steps: - uses: actions/checkout@v4