From 87b5ae5c389e912a6ce893ed5887e33a071e1e4c Mon Sep 17 00:00:00 2001 From: Peter Feerick <5500713+pfeerick@users.noreply.github.com> Date: Thu, 23 Apr 2026 15:00:27 +1000 Subject: [PATCH] ci: switch build_release trigger to paths allowlist and add workflow_dispatch Replace paths-ignore (denylist) with a paths allowlist so the workflow only fires on theme file changes or edits to the workflow itself. Adds workflow_dispatch for manual triggering. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/build_release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index db52266..0391970 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -3,11 +3,14 @@ name: Build Release ZIP on: push: branches: [main] - paths-ignore: - - "**.md" + paths: + - 'THEMES/**' + - '.github/workflows/build_release.yml' pull_request: - paths-ignore: - - "**.md" + paths: + - 'THEMES/**' + - '.github/workflows/build_release.yml' + workflow_dispatch: jobs: package: