From f776aaa9bc4f3fb24accdab3b591b954a2111c91 Mon Sep 17 00:00:00 2001 From: Eric Fennis Date: Fri, 18 Apr 2025 11:37:09 +0200 Subject: [PATCH] ci(ci): Improve ci trigger --- .github/workflows/ci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15e85c830..689b41985 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: create-release: - if: github.repository == 'lucide-icons/lucide' && ${{ !startsWith(github.event.head_commit.message, 'fix(icons)') }} + if: github.repository == 'lucide-icons/lucide' && ${{ !startsWith('fix(icons)', github.event.head_commit.message) }} runs-on: ubuntu-latest outputs: VERSION: ${{ steps.new-version.outputs.NEW_VERSION }} @@ -22,15 +22,6 @@ jobs: cache: 'pnpm' node-version-file: 'package.json' - - name: Log head message - run: echo "${{ github.event.head_commit.message }}" - - - name: Log push head message - run: echo "${{ github.event.push.head_commit.message }}" - - - name: Log github event - run: echo "${{ toJson(github.event) }}" - - name: Install dependencies run: pnpm install --frozen-lockfile