Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for GITHUB_REPOSITORY (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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")],
        commit_in_place: Annotated[
            bool, typer.Option(envvar="COMMIT_IN_PLACE", show_default=True)
        ] = False,
    ) -> None:
        print("Setting up GitHub Actions git user")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  2. scripts/people.py

        repository: DiscussionsRepository
    
    
    class DiscussionsResponse(BaseModel):
        data: DiscussionsResponseData
    
    
    class Settings(BaseSettings):
        github_token: SecretStr
        github_repository: str
        httpx_timeout: int = 30
        speed_multiplier: float = 1.0
    
    
    def get_graphql_response(
        *,
        settings: Settings,
        query: str,
        after: str | None = None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:51:24 GMT 2026
    - 15K bytes
    - Click Count (0)
  3. 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: str | None = None
        httpx_timeout: int = 30
        debug: bool | None = False
        number: int | None = None
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top