From 91c6532e4a14340bd2262e19dae573b95a5da6d0 Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Fri, 9 Jan 2026 10:33:01 -0600 Subject: [PATCH 1/2] [CI_cypress] Add SESSION_SECRET_KEY env & update repo name --- .github/workflows/CI_cypress.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI_cypress.yml b/.github/workflows/CI_cypress.yml index b4cdc9ad..404a101a 100644 --- a/.github/workflows/CI_cypress.yml +++ b/.github/workflows/CI_cypress.yml @@ -13,6 +13,7 @@ jobs: OCOTILLO_API_URL: http://localhost:8000 VITE_OCOTILLO_API_URL: http://localhost:8000 AUTHENTIK_DISABLE_AUTHENTICATION: ${{ secrets.AUTHENTIK_TEST }} + SESSION_SECRET_KEY: your_secret_key_here # --- DATABASE VALUES FOR DOCKER COMPOSE --- POSTGRES_HOST: db @@ -25,10 +26,10 @@ jobs: - name: Checkout frontend uses: actions/checkout@v4 - - name: Checkout FastAPI backend (NMSampleLocations staging) + - name: Checkout FastAPI backend (OcotilloAPI staging) uses: actions/checkout@v4 with: - repository: DataIntegrationGroup/NMSampleLocations + repository: DataIntegrationGroup/OcotilloAPI ref: staging path: api-repo From a824b43e9ef625a776977ff88f28f90bd2102221 Mon Sep 17 00:00:00 2001 From: Chase Martin Date: Fri, 9 Jan 2026 10:50:20 -0800 Subject: [PATCH 2/2] fix: try docker compose fix branch from API --- .github/workflows/CI_cypress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_cypress.yml b/.github/workflows/CI_cypress.yml index 404a101a..1eca4cb7 100644 --- a/.github/workflows/CI_cypress.yml +++ b/.github/workflows/CI_cypress.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 with: repository: DataIntegrationGroup/OcotilloAPI - ref: staging + ref: cm-docker-compose-fix path: api-repo - name: Set up Node.js