|
All checks were successful
Build & Push Container Image / build (push) Successful in 10s
Root cause: estimate field used || 0 which collapsed both null (never estimated) and 0 (estimated as zero) into the same value. The filter !estimate then matched both, so saving 0 points left the issue in the unestimated list and advanceToNext re-pokered it. Fix: use ?? null so 0 is a distinct valid estimate, and filter on == null to only match truly unestimated issues. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| public | ||
| src | ||
| .env.example | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| vite.config.js | ||