Skip to content

Commit

Permalink
Update checkout command
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Feb 19, 2024
1 parent 855f1ee commit cac98d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/people/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,9 +601,9 @@ def get_top_users(
subprocess.run(
["git", "config", "user.email", "[email protected]"], check=True
)
branch_name = "langchain-people"
branch_name = "langchain/langchain-people"
logging.info(f"Creating a new branch {branch_name}")
subprocess.run(["git", "checkout", "-b", branch_name], check=True)
subprocess.run(["git", "checkout", "-B", branch_name], check=True)
logging.info("Adding updated file")
subprocess.run(
["git", "add", str(people_path)], check=True
Expand Down

0 comments on commit cac98d0

Please sign in to comment.