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 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(); +}