From f13f0b9bf49258e4b279836fa7c428056fe3d6a2 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 20:58:09 +1300 Subject: [PATCH 1/7] add docs update workflow on PR merge to master Co-Authored-By: Claude Opus 4.5 --- .github/workflows/update-docs.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/update-docs.yml diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml new file mode 100644 index 00000000..2977ea70 --- /dev/null +++ b/.github/workflows/update-docs.yml @@ -0,0 +1,29 @@ +name: Update Documentation + +on: + pull_request: + types: [closed] + branches: [master] + +jobs: + update-docs: + # Only run if PR was merged (not just closed) + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + + steps: + - name: Trigger docs update + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.DOCS_REPO_PAT }} + repository: shrimbly/node-banana-docs + event-type: source-pr-merged + client-payload: | + { + "pr_number": "${{ github.event.pull_request.number }}", + "pr_title": "${{ github.event.pull_request.title }}", + "pr_body": ${{ toJson(github.event.pull_request.body) }}, + "pr_url": "${{ github.event.pull_request.html_url }}", + "merged_by": "${{ github.event.pull_request.merged_by.login }}", + "head_sha": "${{ github.event.pull_request.merge_commit_sha }}" + } From ca9aaf56cd5c4dc03086a2831f2bfa67ebb78bd0 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 21:19:50 +1300 Subject: [PATCH 2/7] add description and Discord link to workflow templates view Co-Authored-By: Claude Opus 4.5 --- .../quickstart/QuickstartTemplatesView.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/components/quickstart/QuickstartTemplatesView.tsx b/src/components/quickstart/QuickstartTemplatesView.tsx index c109be9a..9e68fafe 100644 --- a/src/components/quickstart/QuickstartTemplatesView.tsx +++ b/src/components/quickstart/QuickstartTemplatesView.tsx @@ -118,6 +118,11 @@ export function QuickstartTemplatesView({ {/* Content */}
+ {/* Description */} +

+ Pre-built workflows to help you get started quickly. Select a template to load it into the canvas. +

+ {/* Quick Start Templates */}

@@ -310,6 +315,20 @@ export function QuickstartTemplatesView({ ))}

)} + + {/* Discord CTA */} +

+ Want to share your workflow?{" "} + + Join our Discord + {" "} + to submit it to the community templates. +

{/* Error */} From cb16cefc3767b5bff59088c0783f41c577be1eb3 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 21:30:42 +1300 Subject: [PATCH 3/7] improve prompt workflow view text legibility and add Gemini note Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/PromptWorkflowView.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/quickstart/PromptWorkflowView.tsx b/src/components/quickstart/PromptWorkflowView.tsx index 3f98681b..e78d4dec 100644 --- a/src/components/quickstart/PromptWorkflowView.tsx +++ b/src/components/quickstart/PromptWorkflowView.tsx @@ -91,10 +91,13 @@ export function PromptWorkflowView({ border-neutral-700 hover:border-neutral-600 `} /> -

+

Describe what you want your workflow to accomplish. Be specific about inputs, outputs, and any transformations.

+

+ Note: This feature currently only works with Gemini models. +

{/* Error */} From b1ccae3455dfaa8a8373e66a339907549d223505 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 21:42:39 +1300 Subject: [PATCH 4/7] update prompt workflow button description to mention Gemini Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/QuickstartInitialView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quickstart/QuickstartInitialView.tsx b/src/components/quickstart/QuickstartInitialView.tsx index 06fcd690..0ec33d5f 100644 --- a/src/components/quickstart/QuickstartInitialView.tsx +++ b/src/components/quickstart/QuickstartInitialView.tsx @@ -135,7 +135,7 @@ export function QuickstartInitialView({ /> } title="Prompt a workflow" - description="Describe what you want" + description="Get Gemini to build it" badge="Beta" /> From 7f05bde2f6aa78d79074fc3dc3d231f6bdb1d221 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 21:48:25 +1300 Subject: [PATCH 5/7] revert prompt workflow button description Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/QuickstartInitialView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quickstart/QuickstartInitialView.tsx b/src/components/quickstart/QuickstartInitialView.tsx index 0ec33d5f..06fcd690 100644 --- a/src/components/quickstart/QuickstartInitialView.tsx +++ b/src/components/quickstart/QuickstartInitialView.tsx @@ -135,7 +135,7 @@ export function QuickstartInitialView({ /> } title="Prompt a workflow" - description="Get Gemini to build it" + description="Describe what you want" badge="Beta" /> From 105e0862734cb4125512b4533abf1f6815d3f529 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 21:59:35 +1300 Subject: [PATCH 6/7] update prompt workflow description to mention Gemini Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/QuickstartInitialView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quickstart/QuickstartInitialView.tsx b/src/components/quickstart/QuickstartInitialView.tsx index 06fcd690..0ec33d5f 100644 --- a/src/components/quickstart/QuickstartInitialView.tsx +++ b/src/components/quickstart/QuickstartInitialView.tsx @@ -135,7 +135,7 @@ export function QuickstartInitialView({ /> } title="Prompt a workflow" - description="Describe what you want" + description="Get Gemini to build it" badge="Beta" /> From a090143233260892f9df194287a9f2e3fb823cec Mon Sep 17 00:00:00 2001 From: shrimbly Date: Thu, 15 Jan 2026 22:14:12 +1300 Subject: [PATCH 7/7] remove block-master-prs workflow Co-Authored-By: Claude Opus 4.5 --- .github/workflows/block-master-prs.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/block-master-prs.yml diff --git a/.github/workflows/block-master-prs.yml b/.github/workflows/block-master-prs.yml deleted file mode 100644 index 32d3f1a8..00000000 --- a/.github/workflows/block-master-prs.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Enforce Develop Branch -on: - pull_request: - branches: - - master # Triggers only on PRs targeting master - -jobs: - guard-master: - runs-on: ubuntu-latest - steps: - - name: Check base branch - # logic: If the PR is NOT coming from a release or hotfix branch, block it. - if: "!startsWith(github.head_ref, 'release/') && !startsWith(github.head_ref, 'hotfix/')" - run: | - echo "::error::⛔ WRONG BRANCH: You are trying to merge into 'master'. Please change the base branch of this PR to 'develop'." - exit 1