Skip to main content

Сведения о списках задач

Списки задач позволяют разбить работы или запросы на вытягивание на отдельные небольшие задачи, а затем отслеживать завершение всего набора таких работ.

Note: For more information about the new iteration of tasklists, which is currently in beta, see "Creating a tasklist."

About task lists

A task list is a set of tasks that each render on a separate line with a clickable checkbox. You can select or deselect the checkboxes to mark the tasks as complete or incomplete.

You can use Markdown to create a task list in any comment on GitHub Enterprise Cloud. If you reference an issue, pull request, or discussion in a task list, the reference will unfurl to show the title and state.

You can view task list summary information in issue and pull request lists, when the task list is in the initial comment.

Creating task lists

To create a task list, preface list items with a hyphen and space followed by [ ]. To mark a task as complete, use [x].

- [x] #739
- [ ] https://github.com/octo-org/octo-repo/issues/740
- [ ] Add delight to the experience when all tasks are complete :tada:

Screenshot showing the rendered version of the markdown. The references to issues are rendered as issue titles.

Tip: You cannot create task list items within closed issues or issues with linked pull requests.

Reordering tasks

You can reorder the items in a task list. First, click or hover to the left of a task's checkbox until a grid of six dots appears. Then, drag and drop the grid to move the task to a new location.

You can reorder tasks across different lists in the same comment, but you cannot reorder tasks across different comments.

Screenshot of a GitHub issue showing two tasks in a task list. A grid of six dots to the left of the second task is outlined in dark orange.

Further reading