Compare commits

..

2 Commits

Author SHA1 Message Date
debug
7a87e288c2 Debug 2 2025-01-01 22:18:59 +00:00
Sebastián Ramírez
8aa879ea47 Merge 29b24209b6 into dd649ff814 2025-01-01 22:14:46 +00:00
2 changed files with 1 additions and 2 deletions

View File

View File

@@ -1,5 +1,4 @@
import logging import logging
import secrets
import subprocess import subprocess
from collections import Counter from collections import Counter
from datetime import datetime from datetime import datetime
@@ -286,7 +285,7 @@ def main() -> None:
subprocess.run( subprocess.run(
["git", "config", "user.email", "github-actions@github.com"], check=True ["git", "config", "user.email", "github-actions@github.com"], check=True
) )
branch_name = f"fastapi-people-contributors-{secrets.token_hex(4)}" branch_name = "fastapi-people-contributors"
logging.info(f"Creating a new branch {branch_name}") 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") logging.info("Adding updated file")