From 768b79cfff416f4d49d659124f9b95c4003205c7 Mon Sep 17 00:00:00 2001 From: "genui-scotty[bot]" Date: Thu, 12 Mar 2026 11:34:33 -0700 Subject: [PATCH] fix: ignore documentation/ and tests/ in create-release.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These folders contain no project.json and should never trigger a release. The release workflow extracts module paths from changed files and reads project.json to determine versions — adding them to files_ignore prevents the Version and Release Setup step from failing when only docs or tests change. --- .github/workflows/create-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 1439150..5d01bfa 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -31,6 +31,8 @@ jobs: .markdownlint* *.code-workspace *.md + documentation/** + tests/** - name: Get changed Action and Workflow paths if: steps.changed-files.outputs.any_changed == 'true'