Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
den-is committed Jun 24, 2024
1 parent b61d13c commit d530eef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

try:
GH_USERNAME = os.environ["GH_USERNAME"]
GH_LOGIN_PASSWORD = os.environ["GH_LOGIN_PASSWORD"]
GH_PASSWORD = os.environ["GH_PASSWORD"]
GH_LOGIN_WAIT = int(os.getenv("GH_LOGIN_WAIT", 60))

GH_LOGIN_URL = os.getenv("GH_LOGIN_URL", "https://github.com/login")
Expand Down Expand Up @@ -92,7 +92,7 @@ def main():
insert_username.send_keys(GH_USERNAME)

insert_password = driver.find_element(By.NAME, "password")
insert_password.send_keys(GH_LOGIN_PASSWORD)
insert_password.send_keys(GH_PASSWORD)

sign_in = driver.find_element(By.NAME, "commit")
sign_in.click()
Expand Down

0 comments on commit d530eef

Please sign in to comment.