We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf73bf commit 6ccf359Copy full SHA for 6ccf359
adabot/lib/community_bundle_announcer.py
@@ -75,6 +75,9 @@ def get_community_bundle_updates() -> Tuple[Set[RepoResult], Set[RepoResult]]:
75
logging.warning("Rate Limit will reset at: %s", core_rate_limit_reset)
76
time.sleep(sleep_time.seconds)
77
continue
78
+ except pygithub.GithubException:
79
+ # Secrets may not be available or error occurred - just skip
80
+ return (set(), set())
81
82
83
if __name__ == "__main__":
0 commit comments