Skip to content
Merged
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,19 @@ deployments:
variables:
# logical id → remote variable name (Actions Variables API)
logLevel: LOG_LEVEL

# Org secrets/variables: org name is the owner of repository (acme from acme/web).
# Token needs admin:org (classic PAT). visibility defaults to private.
- name: github-org
set: production
destination: github
scope:
kind: organization
visibility: private # all | private | selected (+ selected_repository_ids)
secrets:
apiKey: API_KEY
variables:
logLevel: LOG_LEVEL
```

Kind is declared once under `secrets` or `variables`. Connectors map kind to the provider primitive (GitHub secrets vs variables APIs; Vercel `type: sensitive` vs `encrypted`). SST supports secrets only — non-secret SST config belongs in code as [Linkables](https://sst.dev/docs/component/linkable/).
Expand Down
Loading