mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
fix(env): update GitHub owner and repository names for consistency
This commit is contained in:
@@ -60,8 +60,8 @@ NEXT_PUBLIC_WEB_URL=http://localhost:3000
|
||||
# --- GitHub workflow ---------------------------------------------------------
|
||||
# Required by the Admin "Create PR" action. The CMS workflow service uses
|
||||
# these to open content branches and pull requests against the canonical repo.
|
||||
GITHUB_OWNER=acid-info
|
||||
GITHUB_REPO=logos-co
|
||||
GITHUB_OWNER=logos-co
|
||||
GITHUB_REPO=logos-web
|
||||
|
||||
# GitHub App installation. Personal access tokens are intentionally unsupported
|
||||
# so CMS-created GitHub actions are attributed to the App, not a personal user.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Picks one existing RFP fixture, simulates an editor change to its tagline,
|
||||
* and runs the full create-branch → atomic-commit → open-PR pipeline against
|
||||
* the real `acid-info/logos-co` repository. Verifies the PR exists and points
|
||||
* the real `logos-co/logos-web` repository. Verifies the PR exists and points
|
||||
* at the expected file path, then cleans up (close PR + delete branch).
|
||||
*
|
||||
* Authentication: uses GitHub App installation credentials only.
|
||||
|
||||
@@ -6,8 +6,8 @@ import { __resetGithubConfigForTests, loadGithubConfigFromEnv } from '../config'
|
||||
const originalEnv = { ...process.env }
|
||||
|
||||
const setBaseEnv = (): void => {
|
||||
process.env.GITHUB_OWNER = 'acid-info'
|
||||
process.env.GITHUB_REPO = 'logos-co'
|
||||
process.env.GITHUB_OWNER = 'logos-co'
|
||||
process.env.GITHUB_REPO = 'logos-web'
|
||||
process.env.GITHUB_APP_ID = '12345'
|
||||
process.env.GITHUB_INSTALLATION_ID = '67890'
|
||||
delete process.env.GITHUB_TOKEN
|
||||
|
||||
Reference in New Issue
Block a user