last min fixes

This commit is contained in:
FlyingPhishy 2024-03-21 14:13:07 +00:00
parent 82e3c0a521
commit be78527707

View File

@ -25,7 +25,7 @@ def push_changes(branch_name, commit_message):
subprocess.run(['git', 'push', 'fork', branch_name], check=True) # Push the commit to the same branch in your fork subprocess.run(['git', 'push', 'fork', branch_name], check=True) # Push the commit to the same branch in your fork
print("Changes pushed successfully.") print("Changes pushed successfully.")
def create_pull_request(pr_title, pr_file, branch_name): def create_pull_request(branch_name, pr_title, pr_file):
# Create a pull request on GitHub using the GitHub CLI # Create a pull request on GitHub using the GitHub CLI
print("Creating pull request...") print("Creating pull request...")
with open(pr_file, 'r') as file: with open(pr_file, 'r') as file: