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 single quotes to prevent any issues with special characters. This change ensures the correct configuration for running the reliability copilot workflow.
This commit is contained in:
Simon Larsen 2024-07-15 14:04:49 -06:00
parent bca58a58ae
commit 9c0cf6a3db
No known key found for this signature in database
GPG Key ID: 96C5DCA24769DBCA

View File

@ -25,8 +25,8 @@ jobs:
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 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 \