Skip to content

Commit c132b4d

Browse files
committed
Baka
1 parent 84be00b commit c132b4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/manager_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class EnvironmentManager:
1010
_TRUTHY = ["true", "1", "t", "y", "yes"]
1111

1212
GH_TOKEN = getenv("INPUT_GH_TOKEN")
13-
GITHUB_REPOSITORY = getenv("GITHUB_REPOSITORY")
13+
REPO_NAME = getenv("INPUT_REPO_NAME")
1414
# Google Script
1515
PROJECT_ID = environ["INPUT_PROJECT_ID"]
1616
PROJECT_NAME = environ["INPUT_PROJECT_NAME"]

src/manager_github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def prepare_github_env(cls):
3131
cls.USER = github.get_user()
3232
rmtree(clone_path, ignore_errors=True)
3333

34-
cls._REMOTE_NAME = f"{cls.USER.login}/{EM.GITHUB_REPOSITORY}"
34+
cls._REMOTE_NAME = f"{cls.USER.login}/{EM.REPO_NAME}"
3535
cls._REPO_PATH = f"https://{EM.GH_TOKEN}@github.com/{cls._REMOTE_NAME}.git"
3636

3737
cls.REMOTE = github.get_repo(cls._REMOTE_NAME)

0 commit comments

Comments
 (0)