-
Notifications
You must be signed in to change notification settings - Fork 585
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
Issues pane: Sort issues in milestone by issue priority #2029
Comments
You can define your own queries as well as modify the "My Issues" query in "githubIssues.queries": [
{
"label": "My Issues",
"query": "is:issue is:open repo:${owner}/${repository} sort:comments-desc "
},
{
"label": "Created Issues",
"query": "author:${user} state:open repo:${owner}/${repository} sort:updated-desc"
},
{
"label": "Closed Issues",
"query": "author:${user} state:closed repo:${owner}/${repository} sort:updated-desc"
}
] Does this help? |
I don't think so, because (unless I'm mistaken) the settings syntax isn't expressive enough to recreate the default behaviour of grouping tickets by milestone. I also don't think GitHub query syntax offers sorting by milestone priority. I was assuming that milestone grouping was probably implementing in the extension itself, and that ordering by milestone priority (assuming the data is even available via the GitHub API) would need to go in the same place. |
I think you are looking for a way to group issues. If we provide a way to group them, then you can use GitHub's search syntax to sort however you want. |
Duplicate of #1881 |
Sounds good! I do still think the default query should sort by milestone priority, if possible, but if I can eventually do it myself that's good too. |
I'd like the issue pane to sort my milestone issues by priority, so that they appear in the same order as on GitHub.
GitHub:
Extension:
Happy to take a crack at it myself, might just need some direction.
The text was updated successfully, but these errors were encountered: