diff options
author | 2021-03-31 19:59:18 +0200 | |
---|---|---|
committer | 2021-03-31 19:59:18 +0200 | |
commit | a14dd82dd672b123f4cf00b6324be5bb79528cdd (patch) | |
tree | dbfe05642719a08e1547c1266cac78f5f5e8f6d4 | |
parent | Merge: changes from 'upstream/main' (diff) |
Branding: target 'main' branch
With the branding-side PR merged, we can now target the production
branch.
-rw-r--r-- | bot/exts/backend/branding/_repository.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/backend/branding/_repository.py b/bot/exts/backend/branding/_repository.py index 3a9745ed5..e6c2396b1 100644 --- a/bot/exts/backend/branding/_repository.py +++ b/bot/exts/backend/branding/_repository.py @@ -9,9 +9,9 @@ from bot.constants import Keys from bot.errors import BrandingMisconfiguration # Base URL for requests into the branding repository. -BRANDING_URL = "https://api.github.com/repos/kwzrd/pydis-branding/contents" +BRANDING_URL = "https://api.github.com/repos/python-discord/branding/contents" -PARAMS = {"ref": "kwzrd/events-rework"} # Target branch. +PARAMS = {"ref": "main"} # Target branch. HEADERS = {"Accept": "application/vnd.github.v3+json"} # Ensure we use API v3. # A GitHub token is not necessary. However, unauthorized requests are limited to 60 per hour. |