From 867785c4e3da17ba073c43e39736599602af3716 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 02:55:04 +0000 Subject: [PATCH 1/2] Initial plan From d191de9fcdb2fc4e0e42841fe86499324948906f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Dec 2025 02:58:33 +0000 Subject: [PATCH 2/2] Fix CI failure by making Docker push conditional on ENABLE_DOCKER_PUSH variable Co-authored-by: ianlintner <500914+ianlintner@users.noreply.github.com> --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27fb295..8299da9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,8 @@ jobs: docker-build-push: name: Build & Push Docker Image runs-on: ubuntu-latest - if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) + # Only run when pushing to main/tags AND Azure credentials are configured + if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) && vars.ENABLE_DOCKER_PUSH == 'true' needs: tests permissions: contents: 'read'