Skip to content
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

fix: rm unwanted check for repo and owner #69

Merged
merged 1 commit into from
Jul 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions issue_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,11 +290,6 @@ def main():
write_to_markdown(None, None, None, None, None, None, None)
return
else:
if owner is None or repo_name is None:
raise ValueError(
"The search query for issues/prs must include a repository owner and name \
(ie. repo:owner/repo)"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.

)
issues = search_issues(search_query, github_connection)
if len(issues) <= 0:
print("No issues found")
Copy link

@BuBu042 BuBu042 Jul 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Github/issue_metrics.py

Expand Down