Skip to content

Commit cf3dda2

Browse files
authored
Merge pull request #73 from martincostello/support-owner
Support "owner" and "user" in search queries
2 parents 4298576 + b22d846 commit cf3dda2

File tree

2 files changed

+16
-37
lines changed

2 files changed

+16
-37
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Below are the allowed configuration options:
4646
| field | required | default | description |
4747
|-----------------------|----------|---------|-------------|
4848
| `GH_TOKEN` | True | | The GitHub Token used to scan the repository. Must have read access to all repository you are interested in scanning. |
49-
| `SEARCH_QUERY` | True | | The query by which you can filter issues/prs which must contain a `repo:` entry or an `org:` entry. For discussions, include `type:discussions` in the query. |
49+
| `SEARCH_QUERY` | True | | The query by which you can filter issues/prs which must contain a `repo:`, `org:`, `owner:`, or a `user:` entry. For discussions, include `type:discussions` in the query. |
5050
| `LABELS_TO_MEASURE` | False | | A comma separated list of labels to measure how much time the label is applied. If not provided, no labels durations will be measured. Not compatible with discussions at this time. |
5151
| `HIDE_TIME_TO_FIRST_RESPONSE` | False | | If set to any value, the time to first response will not be displayed in the generated markdown file. |
5252
| `HIDE_TIME_TO_CLOSE` | False | | If set to any value, the time to close will not be displayed in the generated markdown file. |

issue_metrics.py

+15-36
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515
get_per_issue_metrics(issues: Union[List[dict], List[github3.issues.Issue]],
1616
discussions: bool = False) -> tuple[List, int, int]:
1717
Calculate the metrics for each issue in a list of GitHub issues.
18-
get_repo_owner_and_name(search_query: str) -> tuple[Union[str, None], Union[str, None]]:
19-
Get the repository owner and name from the search query.
20-
get_organization(search_query: str) -> Union[str, None]: Get the organization
21-
from the search query.
18+
get_owner(search_query: str) -> Union[str, None]]:
19+
Get the owner from the search query.
2220
main(): Run the issue-metrics script.
2321
"""
2422

@@ -191,46 +189,27 @@ def get_per_issue_metrics(
191189
return issues_with_metrics, num_issues_open, num_issues_closed
192190

193191

194-
def get_repo_owner_and_name(
192+
def get_owner(
195193
search_query: str,
196-
) -> tuple[Union[str, None], Union[str, None]]:
197-
"""Get the repository owner and name from the search query.
194+
) -> Union[str, None]:
195+
"""Get the owner from the search query.
198196
199197
Args:
200198
search_query (str): The search query used to search for issues.
201199
202200
Returns:
203-
tuple[Union[str, None], Union[str, None]]: A tuple containing the repository owner and name.
201+
Union[str, None]: The owner.
204202
205203
"""
206204
search_query_split = search_query.split(" ")
207-
repo_owner, repo_name = None, None
205+
owner = None
208206
for item in search_query_split:
209207
if "repo:" in item and "/" in item:
210-
repo_owner = item.split(":")[1].split("/")[0]
211-
repo_name = item.split(":")[1].split("/")[1]
208+
owner = item.split(":")[1].split("/")[0]
209+
if "org:" in item or "owner:" in item or "user:" in item:
210+
owner = item.split(":")[1]
212211

213-
return repo_owner, repo_name
214-
215-
216-
def get_organization(search_query: str) -> Union[str, None]:
217-
"""Get the organization from the search query.
218-
219-
Args:
220-
search_query (str): The search query used to search for issues.
221-
222-
Returns:
223-
Union[str, None]: The organization from the search query.
224-
225-
"""
226-
# Get the organization from the search query
227-
search_query_split = search_query.split(" ")
228-
organization = None
229-
for item in search_query_split:
230-
if "org:" in item:
231-
organization = item.split(":")[1]
232-
233-
return organization
212+
return owner
234213

235214

236215
def main():
@@ -261,13 +240,13 @@ def main():
261240
token = env_vars[1]
262241

263242
# Get the repository owner and name from the search query
264-
owner, repo_name = get_repo_owner_and_name(search_query)
265-
organization = get_organization(search_query)
243+
owner = get_owner(search_query)
266244

267-
if (owner is None or repo_name is None) and organization is None:
245+
if owner is None:
268246
raise ValueError(
269247
"The search query must include a repository owner and name \
270-
(ie. repo:owner/repo) or an organization (ie. org:organization)"
248+
(ie. repo:owner/repo), an organization (ie. org:organization), \
249+
a user (ie. user:login) or an owner (ie. owner:user-or-organization)"
271250
)
272251

273252
# Determine if there are label to measure

0 commit comments

Comments
 (0)