diff --git a/feature-a-README-nosandbox.md b/feature-a-README-nosandbox.md new file mode 100644 index 00000000..a53ff45a --- /dev/null +++ b/feature-a-README-nosandbox.md @@ -0,0 +1,5 @@ +# Feature A (No Sandbox) + +This is Feature A created by Copilot to test multi-PR functionality without sandbox protection. + +Created at: 2026-06-23T05:19:21Z diff --git a/feature-a-script-nosandbox.py b/feature-a-script-nosandbox.py new file mode 100644 index 00000000..38714516 --- /dev/null +++ b/feature-a-script-nosandbox.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +def feature_a(): + print("Hello from Feature A (No Sandbox)!") + +if __name__ == "__main__": + feature_a()