1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

ci(dependencies): fix some envs and add requirements

This commit is contained in:
Carlo Sala
2023-12-28 21:20:28 +01:00
parent ec74eb91bd
commit 46b24d4099
3 changed files with 11 additions and 6 deletions

View File

@@ -302,8 +302,8 @@ class Git:
@staticmethod
def add_and_commit(scope: str, version: str):
user_name = "ohmyzsh"
user_email = "bot@ohmyz.sh"
user_name = os.environ.get("GIT_APP_NAME")
user_email = os.environ.get("GIT_APP_EMAIL")
# Add all files to git staging
CommandRunner.run_or_fail(["git", "add", "-A", "-v"], stage="AddFiles")