Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for get_pull (0.04 sec)

  1. scripts/notify_translations.py

            f"Sleeping for {sleep_time} seconds to avoid "
            "race conditions and multiple comments"
        )
        time.sleep(sleep_time)
    
        # Get PR
        logging.debug(f"Processing PR: #{number}")
        pr = repo.get_pull(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:
                langs.append(label[5:])
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. scripts/label_approved.py

    else:
        logging.basicConfig(level=logging.INFO)
    logging.debug(f"Using config: {settings.model_dump_json()}")
    g = Github(settings.token.get_secret_value())
    repo = g.get_repo(settings.github_repository)
    for pr in repo.get_pulls(state="open"):
        logging.info(f"Checking PR: #{pr.number}")
        pr_labels = list(pr.get_labels())
        pr_label_by_name = {label.name: label for label in pr_labels}
        reviews = list(pr.get_reviews())
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Jun 17 07:50:19 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. scripts/deploy_docs_status.py

        g = Github(auth=Auth.Token(settings.github_token.get_secret_value()))
        repo = g.get_repo(settings.github_repository)
        use_pr = next(
            (pr for pr in repo.get_pulls() if pr.head.sha == settings.commit_sha), None
        )
        if not use_pr:
            logging.error(f"No PR found for hash: {settings.commit_sha}")
            return
        commits = list(use_pr.get_commits())
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 05:56:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/UnannotatedJavaClass.java

    import org.jspecify.annotations.NullUnmarked;
    
    /** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */
    @NullUnmarked
    final class UnannotatedJavaClass {
      static Object getNull() {
        return null;
      }
    
      private UnannotatedJavaClass() {}
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 915 bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/UnannotatedJavaClass.java

    import org.jspecify.annotations.NullUnmarked;
    
    /** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */
    @NullUnmarked
    final class UnannotatedJavaClass {
      static Object getNull() {
        return null;
      }
    
      private UnannotatedJavaClass() {}
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 915 bytes
    - Viewed (0)
Back to top