Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/dev/cli-internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ Both per-org and per-repo modes share the same core pipeline. The code follows t
│ │ Phase 6: Set secrets & variables │ │
│ │ │ │
│ │ Both modes write the same credential set: │ │
│ │ Secrets (install-time only, not managed by sync): │ │
│ │ Secrets (install-time only, not managed by convergence):│ │
│ │ FULLSEND_GCP_PROJECT_ID │ │
│ │ FULLSEND_GCP_WIF_PROVIDER │ │
│ │ Variables (managed by sync): │ │
│ │ Variables (managed by convergence): │ │
│ │ FULLSEND_GCP_REGION │ │
│ │ FULLSEND_MINT_URL │ │
│ │ FULLSEND_REVIEW_CLIENT_ID (best-effort) │ │
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/user/building-custom-agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ jobs:
ISSUE_SOURCE: ${{ inputs.issue_source || 'github' }}
REPO_FULL_NAME: ${{ github.repository }}
ANTHROPIC_VERTEX_PROJECT_ID: ${{ secrets.FULLSEND_GCP_PROJECT_ID }}
CLOUD_ML_REGION: ${{ vars.FULLSEND_GCP_REGION }} # install-time only, not managed by sync
CLOUD_ML_REGION: ${{ vars.FULLSEND_GCP_REGION }} # set at install time, updated during convergence
run: |
set -euo pipefail
mkdir -p "$GITHUB_WORKSPACE/output"
Expand Down
Loading