diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 05a48fc..e21abd3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,3 +11,7 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + actions: + patterns: + - "*" diff --git a/docs/conf.py b/docs/conf.py index d9b2335..7064234 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,15 +4,17 @@ import os from pathlib import Path import sys +import time sys.path.insert(0, os.path.abspath("..")) +time_t = time.localtime() # -- Project information ----------------------------------------------------- project = "Cirque Pinnacle" -copyright = "2023, Brendan Doherty" +copyright = f"{time_t.tm_year}, Brendan Doherty" author = "Brendan Doherty" # The version info for the project you're documenting, acts as replacement for @@ -75,6 +77,7 @@ # -- Options for HTML output # ---------------------------------------------- +repo_url = "https://github.com/2bndy5/CirquePinnacle" # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. @@ -110,12 +113,12 @@ }, ], # Set the repo location to get a badge with stats - "repo_url": "https://github.com/2bndy5/CirquePinnacle/", + "repo_url": repo_url, "repo_name": "CirquePinnacle", "social": [ { "icon": "fontawesome/brands/github", - "link": "https://github.com/2bndy5/CirquePinnacle", + "link": repo_url, }, ], }