Compare commits

..

No commits in common. "e2613eb77a440cb9ddc9af0e56406a9295084bd5" and "03c1ac3bb396e80317fc8ce10fb5effd39cfa48c" have entirely different histories.

2 changed files with 0 additions and 17 deletions

View file

@ -6,8 +6,3 @@ for ISSUE_ID in $(ent list --ids-only ${MY_FILTER}); do
# do thing with ${ISSUE_ID} # do thing with ${ISSUE_ID}
done done
``` ```
For now you can sort of emulate this with:
```
ent list state=done done-time=2026-01-01T00:00:00-06:00.. | grep ' ' | cut -f 1 -d ' '
```

View file

@ -1,12 +0,0 @@
The done-time thing is implemented and merged, but many issues in our
database were marked Done before this change, so they have no `done_time`.
I think i want to fix this by setting a done-time for each of them using
something like:
```
for ISSUE_ID in $(ent list state=done done-time=9999-01-01T00:00:00-06:00.. | grep ' ' | cut -f 1 -d ' '); do
# use `git log` on the issue's state file to find when it got marked Done
ent done-time ${ISSUE_ID} ${TIME}
done
```