Lines Matching refs:gh
58 def process_pr(gh, maintainer_file, number): argument
60 gh_repo = gh.get_repo(f"{args.org}/{args.repo}")
176 u = gh.get_user(c)
202 u = gh.get_user(maintainer)
217 def process_issue(gh, maintainer_file, number): argument
218 gh_repo = gh.get_repo(f"{args.org}/{args.repo}")
268 def process_modules(gh, maintainers_file): argument
300 issues = gh.search_issues(query=query)
334 gh = Github(token)
338 process_pr(gh, maintainer_file, args.pull_request)
340 process_issue(gh, maintainer_file, args.issue)
342 process_modules(gh, maintainer_file)
351 pulls = gh.search_issues(query=f'{common_prs}')
354 process_pr(gh, maintainer_file, issue.number)