Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GITHUB_REPOSITORY (0.06 sec)

  1. scripts/people.py

        repository: DiscussionsRepository
    
    
    class DiscussionsResponse(BaseModel):
        data: DiscussionsResponseData
    
    
    class Settings(BaseSettings):
        github_token: SecretStr
        github_repository: str
        httpx_timeout: int = 30
        sleep_interval: int = 5
    
    
    def get_graphql_response(
        *,
        settings: Settings,
        query: str,
        after: Union[str, None] = None,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. scripts/notify_translations.py

    
    class AllDiscussionsResponse(BaseModel):
        data: AllDiscussionsData
    
    
    class Settings(BaseSettings):
        model_config = {"env_ignore_empty": True}
    
        github_repository: str
        github_token: SecretStr
        github_event_path: Path
        github_event_name: Union[str, None] = None
        httpx_timeout: int = 30
        debug: Union[bool, None] = False
        number: int | None = None
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. scripts/translate.py

        command: Annotated[str | None, typer.Option(envvar="COMMAND")] = None,
        github_token: Annotated[str, typer.Option(envvar="GITHUB_TOKEN")],
        github_repository: Annotated[str, typer.Option(envvar="GITHUB_REPOSITORY")],
    ) -> None:
        print("Setting up GitHub Actions git user")
        repo = git.Repo(Path(__file__).absolute().parent.parent)
        if not repo.is_dirty(untracked_files=True):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
Back to top