From 39d74622f501ec3c8054e444603a81e60172ef7f Mon Sep 17 00:00:00 2001 From: Don Syme Date: Sun, 29 Mar 2026 19:40:58 +0100 Subject: [PATCH 1/3] Test commit for PR --- test-file-1774809657.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-file-1774809657.md diff --git a/test-file-1774809657.md b/test-file-1774809657.md new file mode 100644 index 0000000..41b6489 --- /dev/null +++ b/test-file-1774809657.md @@ -0,0 +1,3 @@ +# Test PR Content + +This is a test file created for PR testing at Sun Mar 29 19:40:57 BST 2026 From 3b57fab231c3d90be78694d853ce92472e05e647 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 18:44:06 +0000 Subject: [PATCH 2/3] test: 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 0000000..2445667 --- /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-03-29T18:42:22.020Z + +## Purpose +This test verifies that multiple commits are properly applied when using push-to-pull-request-branch. From fd4a03cfd47a5f9ae9146265d06e62dc1dbf6383 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 18:44:07 +0000 Subject: [PATCH 3/3] test: 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 0000000..4abb895 --- /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()