From b093d47dfafe7af1ad1d1fbb32f9ec8c5c9029a7 Mon Sep 17 00:00:00 2001 From: Caspian Zhao Date: Mon, 25 Nov 2024 18:37:50 +0800 Subject: [PATCH] chore: update CI --- .github/workflows/ci.yml | 2 ++ .github/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0a49861..c5525a57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ permissions: jobs: setup: + if: "!contains(github.event.pull_request.title, 'release: version packages')" name: Setup & Code Quality runs-on: ubuntu-latest timeout-minutes: 10 @@ -61,6 +62,7 @@ jobs: run: yarn types build-and-test: + if: "!contains(github.event.pull_request.title, 'release: version packages')" name: Build & Test needs: setup runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73427de1..18cdd61b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,8 @@ jobs: uses: changesets/action@v1 with: publish: npx changeset publish + commit: 'release: version packages' + title: 'release: version packages' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file