Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pull_request (0.14 sec)

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

            "race conditions and multiple comments"
        )
        time.sleep(sleep_time)
    
        # Get PR
        logging.debug(f"Processing PR: #{github_event.pull_request.number}")
        pr = repo.get_pull(github_event.pull_request.number)
        label_strs = {label.name for label in pr.get_labels()}
        langs = []
        for label in label_strs:
            if label.startswith("lang-") and not label == lang_all_label:
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. .github/actions/people/app/main.py

        comments: Comments
        reviews: Reviews
    
    
    class PullRequestEdge(BaseModel):
        cursor: str
        node: PullRequestNode
    
    
    class PullRequests(BaseModel):
        edges: List[PullRequestEdge]
    
    
    class PRsRepository(BaseModel):
        pullRequests: PullRequests
    
    
    class PRsResponseData(BaseModel):
        repository: PRsRepository
    
    
    class PRsResponse(BaseModel):
        data: PRsResponseData
    
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
Back to top