Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for repository (0.19 sec)

  1. .github/actions/notify-translations/app/main.py

    class AllDiscussionsRepository(BaseModel):
        discussions: AllDiscussionsDiscussions
    
    
    class AllDiscussionsData(BaseModel):
        repository: AllDiscussionsRepository
    
    
    class AllDiscussionsResponse(BaseModel):
        data: AllDiscussionsData
    
    
    class Settings(BaseSettings):
        github_repository: str
        input_token: SecretStr
        github_event_path: Path
        github_event_name: Union[str, None] = None
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. .github/actions/people/app/main.py

        return graphql_response.data.repository.discussions.edges
    
    
    def get_graphql_pr_edges(*, settings: Settings, after: Union[str, None] = None):
        data = get_graphql_response(settings=settings, query=prs_query, after=after)
        graphql_response = PRsResponse.model_validate(data)
        return graphql_response.data.repository.pullRequests.edges
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  3. .github/actions/comment-docs-preview-in-pr/app/main.py

    from pydantic import BaseModel, SecretStr, ValidationError
    from pydantic_settings import BaseSettings
    
    github_api = "https://api.github.com"
    
    
    class Settings(BaseSettings):
        github_repository: str
        github_event_path: Path
        github_event_name: Union[str, None] = None
        input_token: SecretStr
        input_deploy_url: str
    
    
    class PartialGithubEventHeadCommit(BaseModel):
        id: str
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 09 15:02:53 GMT 2024
    - 2.1K bytes
    - Viewed (0)
Back to top