Skip to content

Commit

Permalink
docs: planning-queue readme updates with filter options
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswnek authored and steveoh committed Jan 15, 2025
1 parent b03e32a commit 6594c82
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
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).

0 comments on commit 6594c82

Please sign in to comment.