From 6fcdf254320d121b9e0fff39cb34d3935e6358f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 10 Aug 2025 16:49:41 +0000 Subject: [PATCH 1/2] Initial plan From db4aa6f58f8b4b987ff0292ef9670470c02519fe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 10 Aug 2025 16:55:17 +0000 Subject: [PATCH 2/2] Fix BDD test failure masking by adding pipefail to staging workflow Co-authored-by: dannystaple <426859+dannystaple@users.noreply.github.com> --- .github/workflows/on_call_staging_test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/on_call_staging_test.yaml b/.github/workflows/on_call_staging_test.yaml index 6b851598..3831ebd7 100644 --- a/.github/workflows/on_call_staging_test.yaml +++ b/.github/workflows/on_call_staging_test.yaml @@ -46,6 +46,7 @@ jobs: # Perform the tests set +e # Don't exit on error so we can clean up + set -o pipefail # Ensure pipeline returns exit code of first failing command exit_code=0 curl -I -f http://localhost:8080/ || exit_code=1