mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
```text
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:
parent
bca58a58ae
commit
9c0cf6a3db
4
.github/workflows/reliability-copilot.yml
vendored
4
.github/workflows/reliability-copilot.yml
vendored
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user