From 13aedab7b5a23ed974868309f31fd9e14e5b850d Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 27 Apr 2026 18:44:19 +0100 Subject: [PATCH 1/3] Test commit for PR --- test-file-1777311858.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-file-1777311858.md diff --git a/test-file-1777311858.md b/test-file-1777311858.md new file mode 100644 index 0000000..3811378 --- /dev/null +++ b/test-file-1777311858.md @@ -0,0 +1,3 @@ +# Test PR Content + +This is a test file created for PR testing at Mon Apr 27 18:44:18 BST 2026 From 26e2e9c265adf20bc5dbd7538423ce3b43582ce5 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:47:35 +0000 Subject: [PATCH 2/3] Add README-claude-test.md for multi-commit push test Co-Authored-By: Claude Sonnet 4.6 --- README-claude-test.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README-claude-test.md diff --git a/README-claude-test.md b/README-claude-test.md new file mode 100644 index 0000000..2409287 --- /dev/null +++ b/README-claude-test.md @@ -0,0 +1,8 @@ +# Claude Push-to-Branch Multi-Commit Test + +This file was created by the Claude agentic workflow to test the multi-commit push-to-pull-request-branch functionality. + +Created at: 2026-04-27T00:00:00Z + +## Purpose +This test verifies that multiple commits are properly applied when using push-to-pull-request-branch. From 7aa6d07f5d9d9ff9943a7c89929b8fcf4827f5cf 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:47:36 +0000 Subject: [PATCH 3/3] Add claude-script.py for multi-commit push test Co-Authored-By: Claude Sonnet 4.6 --- claude-script.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 claude-script.py diff --git a/claude-script.py b/claude-script.py new file mode 100644 index 0000000..6a851fa --- /dev/null +++ b/claude-script.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +""" +Multi-commit test script created by Claude agentic workflow +""" + +import datetime + +def main(): + print("Hello from Claude 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()