···8888|----------|---------|
8989| `sprint_start_date` | The first day of the sprint formatted as `YYYY-MM-DD`. <br/><br/> Must be entered here since GitHub Project Boards don't have an assigned start/end date. <br/><br/> Example: `2021-10-08` |
9090| `sprint_end_date` | The last day of the sprint formatted as `YYYY-MM-DD`. <br/><br/> Must be entered here since GitHub Project Boards don't have an assigned start/end date. <br/><br/> Example: `2021-10-21` |
9191+| `chart_end_date` | (OPTIONAL) The last day to show on the burndown chart formatted as `YYYY-MM-DD`. <br/><br/> Used to change the end date of the chart without affecting the slope of the ideal burndown line (e.g. to show tasks that were completed after the official end of a sprint). <br/><br/> Example: `2021-10-24` |
9192| `points_label` | (OPTIONAL) The prefix for issue labels containing the point value of the issue. Removing this prefix must leave just an integer. If set to `null`, the burndown chart will count open issues instead of points.<br/><br/> Example: `Points: ` (with the space) |
92939394#### Organization Projects
···100101## Usage
101102Given that `PROJECT_TYPE` is one of `[repository, organization]` and `PROJECT_NAME` matches a key in the `config.json` under the chosen `PROJECT_TYPE`, run the following command:
102103```
103103-make run project_type=PROJECT_TYPE project_name=PROJECT_NAME
104104+make run type=PROJECT_TYPE name=PROJECT_NAME
104105```
105106106107This will pop up an interactive window containing the burndown chart, including a button for saving it as a picture.
···110111111112To see this repository's example project board:
112113```
113113-make run project_type=repository project_name=burndown_chart_kickoff
114114+make run type=repository name=burndown_chart_kickoff
114115```
115116116117To see Golang's progress on their current roadmap:
117118```
118118-make run project_type=organization project_name=golang_on_deck
119119+make run type=organization name=golang_on_deck
119120```
120121121122## Contributing