From e21a780712e1fc1a9990cef8bfcbae36de225fa7 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 27 Apr 2026 18:51:33 +0100 Subject: [PATCH 1/3] Test commit for PR --- test-file-1777312291.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-file-1777312291.md diff --git a/test-file-1777312291.md b/test-file-1777312291.md new file mode 100644 index 00000000..aca857ef --- /dev/null +++ b/test-file-1777312291.md @@ -0,0 +1,3 @@ +# Test PR Content + +This is a test file created for PR testing at Mon Apr 27 18:51:31 BST 2026 From d80d9ffdc47d7f8ab521c27c1a648a0cca009c8d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 17:54:47 +0000 Subject: [PATCH 2/3] Add README-copilot-test.md for multi-commit test Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README-copilot-test.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README-copilot-test.md diff --git a/README-copilot-test.md b/README-copilot-test.md new file mode 100644 index 00000000..bdb5bc1e --- /dev/null +++ b/README-copilot-test.md @@ -0,0 +1,8 @@ +# Copilot Push-to-Branch Multi-Commit Test + +This file was created by the Copilot agentic workflow to test the multi-commit push-to-pull-request-branch functionality. + +Created at: 2026-04-27T17:53:06.089Z + +## Purpose +This test verifies that multiple commits are properly applied when using push-to-pull-request-branch. From bc3abbd85f9d7ef6f5fbfd929421d8c4986993ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 17:54:48 +0000 Subject: [PATCH 3/3] Add copilot-script.py for multi-commit test Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- copilot-script.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 copilot-script.py diff --git a/copilot-script.py b/copilot-script.py new file mode 100644 index 00000000..4abb895e --- /dev/null +++ b/copilot-script.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +""" +Multi-commit test script created by Copilot agentic workflow +""" + +import datetime + +def main(): + print("Hello from Copilot agentic workflow!") + print(f"Current time: {datetime.datetime.now()}") + print("This script was created to test multi-commit push-to-pull-request-branch functionality.") + print("This is commit #2 in the multi-commit test.") + +if __name__ == "__main__": + main()