- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for get_pull (0.14 sec)
-
.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:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 12.4K bytes - Viewed (0) -
scripts/label_approved.py
else: logging.basicConfig(level=logging.INFO) logging.debug(f"Using config: {settings.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 Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 13:58:30 UTC 2024 - 2.2K bytes - Viewed (0) -
scripts/deploy_docs_status.py
logging.info(f"Using config: {settings.model_dump_json()}") g = Github(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 Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 09 15:52:41 UTC 2024 - 3.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/UnannotatedJavaClass.java
*/ package com.google.common.base; /** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */ final class UnannotatedJavaClass { static Object getNull() { return null; } private UnannotatedJavaClass() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 02 17:05:25 UTC 2023 - 854 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/UnannotatedJavaClass.java
*/ package com.google.common.base; /** Class containing an unannotated Java method for use from {@code OptionalExtensionsTest}. */ final class UnannotatedJavaClass { static Object getNull() { return null; } private UnannotatedJavaClass() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 02 17:05:25 UTC 2023 - 854 bytes - Viewed (0)