Skip to content

Commit

Permalink
group dependabot PRs; update docs' copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Mar 25, 2024
1 parent 55d8a4e commit 360f52c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
actions:
patterns:
- "*"
9 changes: 6 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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,
},
],
}
Expand Down

0 comments on commit 360f52c

Please sign in to comment.