From e6bc8e4b300a77c0211c28037e9fbd61221e8904 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Mon, 15 Jul 2024 14:13:00 -0600 Subject: [PATCH] chore: Update Docker configuration for Copilot debugging This commit updates the Docker configuration in the `.github/workflows/reliability-copilot.yml` file to fix the environment variable values for `ONEUPTIME_REPOSITORY_SECRET_KEY` and `CODE_REPOSITORY_PASSWORD`. The values are now properly enclosed in double quotes to ensure consistency and prevent any issues with special characters. This change ensures the correct configuration for running the reliability copilot workflow. --- .github/workflows/reliability-copilot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reliability-copilot.yml b/.github/workflows/reliability-copilot.yml index e71b3bdad1..72ce015cdd 100644 --- a/.github/workflows/reliability-copilot.yml +++ b/.github/workflows/reliability-copilot.yml @@ -24,9 +24,9 @@ jobs: - name: Run Copilot run: | docker run --rm \ - -e ONEUPTIME_URL='https://test.oneuptime.com' \ - -e ONEUPTIME_REPOSITORY_SECRET_KEY='${{ secrets.COPILOT_ONEUPTIME_REPOSITORY_SECRET_KEY }}' \ - -e CODE_REPOSITORY_PASSWORD='${{ github.token }}' \ - -e CODE_REPOSITORY_USERNAME='simlarsen' \ - -e ONEUPTIME_LLM_SERVER_URL='http://57.128.112.160:8547' \ + -e ONEUPTIME_URL="https://test.oneuptime.com" \ + -e ONEUPTIME_REPOSITORY_SECRET_KEY="${{ secrets.COPILOT_ONEUPTIME_REPOSITORY_SECRET_KEY }}" \ + -e CODE_REPOSITORY_PASSWORD="${{ github.token }}" \ + -e CODE_REPOSITORY_USERNAME="simlarsen" \ + -e ONEUPTIME_LLM_SERVER_URL="http://57.128.112.160:8547" \ --net=host oneuptime/copilot:test \ No newline at end of file