mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 08:02:31 +00:00
Phase 6 of the relay split: the relay's deploy/operate surface moves under cloud/ with 24 cloud-* workflows gated on ORCA_CLOUD_OPERATIONS_ENABLED, the Cloud SQL rollout lease action, the relay Terraform root (dual-accept identities for both repositories), scripts, docs, CODEOWNERS, and a terraform validate job in Cloud Verify.
15 lines
617 B
TypeScript
15 lines
617 B
TypeScript
// Single place naming the GitHub repository that holds the Relay workflows. When the Relay tree is
|
|
// copied to its public repository, only this file changes: the repository moves and every workflow
|
|
// file gains a prefix, while the workflow display names stay as they are.
|
|
export const RELAY_GITHUB_REPOSITORY = 'stablyai/orca-cloud'
|
|
|
|
export const RELAY_WORKFLOW_FILE_PREFIX = ''
|
|
|
|
export function relayWorkflowFile(name: string): string {
|
|
return `${RELAY_WORKFLOW_FILE_PREFIX}${name}`
|
|
}
|
|
|
|
export function relayRepositoryApiPath(resource: string): string {
|
|
return `repos/${RELAY_GITHUB_REPOSITORY}/${resource}`
|
|
}
|