From 977fb20f268661eeefe0a02f073f22d9f0325db4 Mon Sep 17 00:00:00 2001 From: Typed SIGTERM Date: Thu, 21 Aug 2025 22:14:16 +0800 Subject: [PATCH] ci: skip crowdin (#376) [skip ci] [skip netlify] --- .gemini/config.yaml | 2 ++ .github/workflows/ci.yml | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 .gemini/config.yaml diff --git a/.gemini/config.yaml b/.gemini/config.yaml new file mode 100644 index 000000000..528ce86e7 --- /dev/null +++ b/.gemini/config.yaml @@ -0,0 +1,2 @@ +ignore_patterns: + - packages/i18n/src/** diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7701b34b..c2aa42287 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +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/')) }} strategy: matrix: include: @@ -102,6 +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/')) }} steps: - uses: actions/checkout@v4