From d5dd4b3093fdbae0f042a1a0c6b4c7e2e704d831 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 27 Apr 2026 19:40:35 +0100 Subject: [PATCH 1/3] Test commit for PR --- test-file-1777315234.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-file-1777315234.md diff --git a/test-file-1777315234.md b/test-file-1777315234.md new file mode 100644 index 0000000..133c445 --- /dev/null +++ b/test-file-1777315234.md @@ -0,0 +1,3 @@ +# Test PR Content + +This is a test file created for PR testing at Mon Apr 27 19:40:34 BST 2026 From 98e6fb823f2bb2f6a7059bf41dc339b4396298b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 18:43:13 +0000 Subject: [PATCH 2/3] Add README-copilot-nosandbox-test.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README-copilot-nosandbox-test.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README-copilot-nosandbox-test.md diff --git a/README-copilot-nosandbox-test.md b/README-copilot-nosandbox-test.md new file mode 100644 index 0000000..507d1e9 --- /dev/null +++ b/README-copilot-nosandbox-test.md @@ -0,0 +1,8 @@ +# Copilot Push-to-Branch Multi-Commit Test (No Sandbox) + +This file was created by the Copilot agentic workflow to test the multi-commit push-to-pull-request-branch functionality without sandbox protection. + +Created at: 2026-04-27T18:42:08Z + +## Purpose +This test verifies that multiple commits are properly applied when using push-to-pull-request-branch without sandbox. From c64e13bd280daba720fa011790af18a904af1b7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 18:43:15 +0000 Subject: [PATCH 3/3] Add copilot-nosandbox-script.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- copilot-nosandbox-script.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 copilot-nosandbox-script.py diff --git a/copilot-nosandbox-script.py b/copilot-nosandbox-script.py new file mode 100644 index 0000000..15da39b --- /dev/null +++ b/copilot-nosandbox-script.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +""" +Multi-commit test script created by Copilot agentic workflow (No Sandbox) +""" + +import datetime + +def main(): + print("Hello from Copilot agentic workflow (No Sandbox)!") + print(f"Current time: {datetime.datetime.now()}") + print("This script was created to test multi-commit push-to-pull-request-branch functionality without sandbox.") + print("This is commit #2 in the multi-commit test.") + +if __name__ == "__main__": + main()