mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
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.
This commit is contained in:
parent
e9f0510d3c
commit
e6bc8e4b30
10
.github/workflows/reliability-copilot.yml
vendored
10
.github/workflows/reliability-copilot.yml
vendored
@ -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
|
Loading…
Reference in New Issue
Block a user