Skip to content

Commit

Permalink
Update update_commit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunterdii authored Nov 6, 2024
1 parent dbce1f6 commit 7e3cf29
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/update_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,26 @@
token = sys.argv[2]
readme_path = sys.argv[3]

headers = {
"Authorization": f"token {token}"
}

# Get the current date
today = datetime.today()
day_of_month = today.strftime("%d") # Get current day of the month (e.g., 06)
month = today.strftime("%b") # Get current month (e.g., Nov)

# Prepare the solution filename for today (e.g., 06(Nov)Root to leaf paths sum.md)
# You can customize this to the exact naming pattern you use
today_solution_filename = f"{day_of_month}({month}){today.strftime('%A')}.md"

# Prepare the commit URL for today (we don't need to change this as it will be dynamically picked from the latest commit)
solution_url = f"https://github.com/{repository}/blob/main/{month}%202024%20GFG%20SOLUTION/{today_solution_filename}"

# Prepare the badge URL and commit link to update README
badge_url = "https://img.shields.io/badge/GeeksforGeeks-Solution%20of%20the%20Day-blue"
badge_link = f"[![Today's POTD Solution]({badge_url})](https://github.com/{repository}/blob/main/{month}%202024%20GFG%20SOLUTION/{day_of_month}({month}){today.strftime('%A')}.md)"
badge_link = f"[![Today's POTD Solution]({badge_url})]({solution_url})" # This makes the badge link to the solution for today

# Read the README file and update the sections for commit and badge
with open(readme_path, "r") as readme:
content = readme.read()

# Update today's solution link (for the commit)
solution_url = f"https://github.com/{repository}/blob/main/{month}%202024%20GFG%20SOLUTION/{day_of_month}({month}){today.strftime('%A')}.md"
content = re.sub(
r"(?<=<!--START_SECTION:latest-commit-->).*?(?=<!--END_SECTION:latest-commit-->)",
f"\n{solution_url}\n",
Expand Down

0 comments on commit 7e3cf29

Please sign in to comment.