-
Notifications
You must be signed in to change notification settings - Fork 2
Remove PyGithub and Add Support for Gitlab and Bitbucket #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
440a41f
b7d8320
aa34e08
74bb3da
6198b11
805111d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,13 +40,13 @@ def main(): | |
try: | ||
IsaacMilarky marked this conversation as resolved.
Show resolved
Hide resolved
|
||
indexGen = IndexGenerator( | ||
agency = args.agency, | ||
verison = args.version, | ||
version = args.version, | ||
token = github_key | ||
IsaacMilarky marked this conversation as resolved.
Show resolved
Hide resolved
|
||
) | ||
|
||
for org in args.orgs.split(","): | ||
org = org.strip() | ||
indexGen.process_organization(org) | ||
indexGen.process_github_org_files(org) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it seems like that when running the script, we call and check for Github orgs only but we should call to check all forges There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah we should update the script for that later in a separate PR. |
||
|
||
indexGen.save_index(args.output) | ||
print(f"\nIndexing complete. Results saved to {args.output}") | ||
|
Uh oh!
There was an error while loading. Please reload this page.