From ba3d1b35f2c2f8940c9903686260a16d0fb418d4 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Tue, 5 Aug 2025 08:34:35 +0200 Subject: [PATCH] fix: remove conflicting paths-ignore from release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - GitHub Actions doesn't support both 'paths' and 'paths-ignore' in the same trigger - This was causing the release workflow to fail on startup - Keeping only the 'paths' filter for package.json changes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41c656c..d5e134d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,19 +6,6 @@ on: paths: - 'package.json' - 'package.runtime.json' - paths-ignore: - - '**.md' - - '**.txt' - - 'docs/**' - - 'examples/**' - - '.github/FUNDING.yml' - - '.github/ISSUE_TEMPLATE/**' - - '.github/pull_request_template.md' - - '.gitignore' - - 'LICENSE*' - - 'ATTRIBUTION.md' - - 'SECURITY.md' - - 'CODE_OF_CONDUCT.md' permissions: contents: write