From 9e6f32324d6bbe1cc3710735ac47c32f1ad34115 Mon Sep 17 00:00:00 2001 From: Vincent Wong Date: Fri, 1 May 2026 16:50:58 -0700 Subject: [PATCH 1/2] add notifications Co-authored-by: Copilot --- .github/workflows/testsPython.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testsPython.yml b/.github/workflows/testsPython.yml index 452f71d..28b713a 100644 --- a/.github/workflows/testsPython.yml +++ b/.github/workflows/testsPython.yml @@ -69,11 +69,16 @@ jobs: notifications: needs: python-unit-tests runs-on: ubuntu-latest + if: always() # Add this line steps: - name: Notify on test results run: | if [ "${{ needs.python-unit-tests.result }}" == "success" ]; then - echo "success notifications go here" + echo "::notice title=Tests Passed::All Python tests passed successfully! ✅" + echo "## ✅ Test Success" >> $GITHUB_STEP_SUMMARY + echo "All tests passed successfully" >> $GITHUB_STEP_SUMMARY else - echo "failure notifications go here" + echo "::error title=Tests Failed::Some Python tests failed. ❌" + echo "## ❌ Test Failure" >> $GITHUB_STEP_SUMMARY + echo "Some tests failed." >> $GITHUB_STEP_SUMMARY fi From 1cd1797b69a9af605931027f9f8dad177b5ec4cb Mon Sep 17 00:00:00 2001 From: Vincent Wong Date: Mon, 25 May 2026 10:44:16 -0700 Subject: [PATCH 2/2] fix: add docker username --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 568a4d2..6dce30d 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,6 @@ OPENAI_API_KEY=ADD-YOUR-OPENAI_API_KEY-HERE ENVIRONMENT=local -DOCKERHUB_USERNAME=ADD-YOUR-DOCKERHUB_USERNAME-HERE +DOCKERHUB_USERNAME=vwong12 DOCKERHUB_ACCESS_TOKEN=ADD-YOUR-DOCKERHUB_ACCESS_TOKEN-HERE LLM_TOOL_CHOICE=required LOGGING_LEVEL=20