From 5772b37c6fd102e8d6d1821cf4d75543e946cb36 Mon Sep 17 00:00:00 2001 From: Steve 'Cutter' Blades Date: Fri, 15 May 2026 15:06:50 -0400 Subject: [PATCH 1/2] ci: Add workflow_dispatch trigger to release workflow --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5f9494c..2fc7e2e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,12 @@ on: branches: [master] push: branches: [master] + workflow_dispatch: + inputs: + reason: + description: 'Reason for manual trigger' + required: false + default: 'Manual release' jobs: validation: @@ -104,7 +110,7 @@ jobs: run: exit 1 release: - if: github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'chore(release)') + if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'chore(release)')) runs-on: ubuntu-latest permissions: From 16f48ef0510aaf27f6e9e9c421c869ef80c7c7a6 Mon Sep 17 00:00:00 2001 From: Steve 'Cutter' Blades Date: Fri, 15 May 2026 15:07:05 -0400 Subject: [PATCH 2/2] feat: Add worklet-base package and refactor processor architecture