fix(env): update GitHub owner and repository names for consistency

This commit is contained in:
jinhojang6
2026-05-26 17:04:28 +09:00
parent 1fa6f4eb03
commit cb7675db1b
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -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.
+1 -1
View File
@@ -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