diff --git a/feature-b/notes.md b/feature-b/notes.md new file mode 100644 index 00000000..f3fafd57 --- /dev/null +++ b/feature-b/notes.md @@ -0,0 +1,5 @@ +# Feature B + +This is Feature B created by Copilot to test multi-PR functionality. + +Created at: 2026-06-19T04:39:48Z diff --git a/feature-b/script.js b/feature-b/script.js new file mode 100644 index 00000000..3b0f0493 --- /dev/null +++ b/feature-b/script.js @@ -0,0 +1,8 @@ +#!/usr/bin/env node +function featureB() { + console.log("Hello from Feature B!"); +} + +if (require.main === module) { + featureB(); +}