]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
♻️ Update config to github_token
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 1 Jan 2025 21:55:22 +0000 (21:55 +0000)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 1 Jan 2025 21:55:22 +0000 (21:55 +0000)
scripts/contributors.py

index a6d4b4bd008fbd7aadf190aa3a4e9f590a3f747c..87170c2c2dbf41336b4ebd133be8e4e5afdc3598 100644 (file)
@@ -112,7 +112,7 @@ class PRsResponse(BaseModel):
 
 
 class Settings(BaseSettings):
-    token: SecretStr
+    github_token: SecretStr
     github_repository: str
     httpx_timeout: int = 30
 
@@ -123,7 +123,7 @@ def get_graphql_response(
     query: str,
     after: str | None = None,
 ) -> dict[str, Any]:
-    headers = {"Authorization": f"token {settings.token.get_secret_value()}"}
+    headers = {"Authorization": f"token {settings.github_token.get_secret_value()}"}
     variables = {"after": after}
     response = httpx.post(
         github_graphql_url,
@@ -238,7 +238,7 @@ def main() -> None:
     logging.basicConfig(level=logging.INFO)
     settings = Settings()
     logging.info(f"Using config: {settings.model_dump_json()}")
-    g = Github(settings.token.get_secret_value())
+    g = Github(settings.github_token.get_secret_value())
     repo = g.get_repo(settings.github_repository)
 
     pr_nodes = get_pr_nodes(settings=settings)