From 09c651a853f614b0a87557fccfcf0a0a052aa7e1 Mon Sep 17 00:00:00 2001 From: Roxanne Farhad <40992044+RoxyFarhad@users.noreply.github.com> Date: Wed, 29 Oct 2025 08:56:18 -0700 Subject: [PATCH] Create integration-tests.yml for testing Add integration tests workflow with commit SHA input --- .github/workflows/integration-tests.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/integration-tests.yml diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 00000000..a0f6b0c7 --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,9 @@ +name: Run Agentex Integration Tests + +on: + workflow_dispatch: + inputs: + commit-sha: + description: "Commit SHA to test against" + required: true + type: string