create new issue 9f0d77fa44e265a4e316f94be42554a5

This commit is contained in:
Sebastian Kuzminsky 2025-07-21 12:58:30 -06:00
parent 7d479da4a6
commit 6fe4d15412

View file

@ -0,0 +1,11 @@
`ent list` should take a git-like --pretty=format:
The immediate use is:
* list all issues in state=inprogress, but only tell me the assignees of each
I currently do this with a slow and awkward shell script:
```
for ISSUE_ID in $(ent list state=inprogress | grep ' ' | cut -f 1 -d ' '); do
ent show "${ISSUE_ID}" | grep -i assign
done
```