From b05084bcf595b338e821915dce8cbba652e09ab3 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:31:59 +0000 Subject: [PATCH 1/2] Add Feature A README (No Sandbox) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- feature-a-README-nosandbox.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 feature-a-README-nosandbox.md 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 From 2cf1b963a75b0ddbc50fe197b9547ae8b7896bf9 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:00 +0000 Subject: [PATCH 2/2] Add Feature A Python script (No Sandbox) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- feature-a-script-nosandbox.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 feature-a-script-nosandbox.py 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()