...
Define what are the closed statuses
Info |
---|
This is where you customise thew metric to fit your project needs |
Code Block | ||||
---|---|---|---|---|
| ||||
closed_statuses as ( select a from ( values ('Closed'), ('Verified') ) s(a) ), |
...
Get the Sprint you want to count the Burndown Chart for
Info |
---|
This is where you customise thew metric to fit your project needs |
Code Block | ||||
---|---|---|---|---|
| ||||
last_sprint as ( -- get the last started sprint select * from Sprint where start_date is not null and state = 'ACTIVE' order by start_date desc limit 1), |
...