-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: planning-queue readme updates with filter options
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
# planning-queue | ||
A place to manage issues that do not have a dedicated repository or code... yet. | ||
|
||
## Handy filters to use in a project view | ||
- `is:open` - Displays only open issues | ||
|
||
- `assignee: @me` - Displays issues assigned to the logged in user | ||
|
||
- `is:open assignee:@me` - Combining the two above filters will display only open issues assigned to the logged in user | ||
|
||
- `program-increment:"FY25-Q3"` - Will filter by the specified quarter | ||
|
||
- `team:Dev,"Data+Dev"` - Allows you to choose your team or teams (the comma acts as an OR statement) | ||
|
||
- `no:q3-sprint` - Shows what issues haven't been assigned a sprint | ||
|
||
- `is:open program-increment:"FY25-Q3" no:q3-sprint` - Will display issues unassigned to a sprint within a given quarter | ||
|
||
- `is:open program-increment:"FY25-Q3" q3-sprint:"Q3 Sprint 2"` - Shows open issues in the current sprint (in this example, the sprint is _Q3 Sprint 2_) | ||
|
||
A comprehensive list of filter options can be found [here](https://docs.github.com/en/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects). |