From 900bf0ec6fa3e407a7cc7d1cc652caa06a91a4c5 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 27 Apr 2026 18:47:42 +0100 Subject: [PATCH 1/3] Test commit for PR --- test-file-1777312061.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-file-1777312061.md diff --git a/test-file-1777312061.md b/test-file-1777312061.md new file mode 100644 index 0000000..7dade69 --- /dev/null +++ b/test-file-1777312061.md @@ -0,0 +1,3 @@ +# Test PR Content + +This is a test file created for PR testing at Mon Apr 27 18:47:41 BST 2026 From a1a01b8087f9b61c7027b2a5ea8ee718413993aa 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:51:25 +0000 Subject: [PATCH 2/3] test: add codex multi-commit readme --- README-codex-test.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README-codex-test.md diff --git a/README-codex-test.md b/README-codex-test.md new file mode 100644 index 0000000..21fdd89 --- /dev/null +++ b/README-codex-test.md @@ -0,0 +1,8 @@ +# Codex Push-to-Branch Multi-Commit Test + +This file was created by the Codex agentic workflow to test the multi-commit push-to-pull-request-branch functionality. + +Created at: 2026-04-27 17:49:13 UTC + +## Purpose +This test verifies that multiple commits are properly applied when using push-to-pull-request-branch. From d8db08c5402b3f82b7de0ba90722789433ec740a 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:51:26 +0000 Subject: [PATCH 3/3] test: add codex multi-commit python script --- codex-script.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 codex-script.py diff --git a/codex-script.py b/codex-script.py new file mode 100644 index 0000000..9cc5c81 --- /dev/null +++ b/codex-script.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +""" +Multi-commit test script created by Codex agentic workflow +""" + +import datetime + +def main(): + print("Hello from Codex 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()