From 0efc9d30f253340270e0274e3bd8754fbae2436a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 05:32:06 +0000 Subject: [PATCH 1/2] Add Feature B README (No Sandbox) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- feature-b-README-nosandbox.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 feature-b-README-nosandbox.md diff --git a/feature-b-README-nosandbox.md b/feature-b-README-nosandbox.md new file mode 100644 index 00000000..6c8a115e --- /dev/null +++ b/feature-b-README-nosandbox.md @@ -0,0 +1,5 @@ +# Feature B (No Sandbox) + +This is Feature B created by Copilot to test multi-PR functionality without sandbox protection. + +Created at: 2026-06-23T05:19:21Z From 048c4e5e02968491f5d54c2adf86a9d2a72be1b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 05:32:07 +0000 Subject: [PATCH 2/2] Add Feature B JavaScript script (No Sandbox) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- feature-b-script-nosandbox.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 feature-b-script-nosandbox.js diff --git a/feature-b-script-nosandbox.js b/feature-b-script-nosandbox.js new file mode 100644 index 00000000..bc4d29d5 --- /dev/null +++ b/feature-b-script-nosandbox.js @@ -0,0 +1,8 @@ +#!/usr/bin/env node +function featureB() { + console.log("Hello from Feature B (No Sandbox)!"); +} + +if (require.main === module) { + featureB(); +}