Description templates (FREE)

You can define templates to use as descriptions for your issues and merge requests.

You can define these templates in a project, group, or instance. Projects inherit the templates defined at a higher level.

You might want to use these templates:

  • For different stages of your workflow, for example, feature proposal, feature improvement, or a bug report.
  • For every issue or merge request for a specific project, so the layout is consistent.
  • For a Service Desk email template.

For description templates to work, they must be:

  • Saved with the .md extension.
  • Stored in your project's repository in the .gitlab/issue_templates or .gitlab/merge_request_templates directory.
  • Be present on the default branch.

Create an issue template

Create a new Markdown (.md) file inside the .gitlab/issue_templates/ directory in your repository.

To create an issue description template:

  1. On the top bar, select Menu > Projects and find your project.
  2. On the left sidebar, select Repository.
  3. Next to the default branch, select {plus}.
  4. Select New file.
  5. Next to the default branch, in the File name text box, enter .gitlab/issue_templates/mytemplate.md, where mytemplate is the name of your issue template.
  6. Commit to your default branch.

To check if this has worked correctly, create a new issue and see if you can find your description template in the Choose a template dropdown list.

Create a merge request template

Similarly to issue templates, create a new Markdown (.md) file inside the .gitlab/merge_request_templates/ directory in your repository. Commit and push to your default branch.

To create a merge request description template:

  1. On the top bar, select Menu > Projects and find your project.
  2. On the left sidebar, select Repository.
  3. Next to the default branch, select {plus}.
  4. Select New file.
  5. Next to the default branch, in the File name text box, enter .gitlab/merge_request_templates/mytemplate.md, where mytemplate is the name of your merge request template.
  6. Commit to your default branch.

To check if this has worked correctly, create a new merge request and see if you can find your description template in the Choose a template dropdown list.

Use the templates

When you create or edit an issue or a merge request, it shows in the Choose a template dropdown list.

To apply a template:

  1. Create or edit an issue or a merge request.
  2. Select the Choose a template dropdown list.
  3. If the Description text box hasn't been empty, to confirm, select Apply template.
  4. Select Save changes.

When you select a description template, its content is copied to the description text box.

To discard any changes to the description you've made after selecting the template: expand the Choose a template dropdown list and select Reset template.

Choosing a description template in an issue

NOTE: You can create shortcut links to create an issue using a designated template. For example: https://gitlab.com/gitlab-org/gitlab/-/issues/new?issuable_template=Feature%20proposal. Read more about creating issues using a URL with prefilled values.

Set instance-level description templates (PREMIUM SELF)

You can set a description template at the instance level for issues and merge requests by using an instance template repository. You can also use the instance template repository for file templates.

You might also be interested project templates that you can use when creating a new project in the instance.

Set group-level description templates (PREMIUM)

With group-level description templates, you can store your templates in a single repository and configure the group file templates setting to point to that repository. As a result, you can use the same templates in issues and merge requests in all the group's projects.

To re-use templates you've created:

  1. On the top bar, select Menu > Groups and find your group.
  2. On the left sidebar, select Settings > General.
  3. Expand Templates.
  4. From the dropdown list, select your template project as the template repository at group level.
  5. Select Save changes.

Group template settings

You might also be interested in templates for various file types in groups.

Set a default template for merge requests and issues (PREMIUM)

In a project, you can choose a default description template for new issues and merge requests. As a result, every time a new merge request or issue is created, it's pre-filled with the text you entered in the template.

Prerequisites:

  • On your project's left sidebar, select Settings > General and expand Visibility, project features, permissions. Ensure issues or merge requests are set to either Everyone with access or Only Project Members.

To set a default description template for merge requests:

  1. Go to your project's Settings.
  2. Select Expand under the Merge requests header.
  3. Fill in the Default description template for merge requests text area.
  4. Select Save changes.

To set a default description template for issues:

  1. Select Expand under Default issue template.
  2. Fill in the Default description template for issues text area.

Because GitLab merge request and issues support Markdown, you can use it to format headings, lists, and so on.

You can also provide issues_template and merge_requests_template attributes in the Projects REST API to keep your default issue and merge request templates up to date.

Example description template

We use description templates for issues and merge requests in the .gitlab folder of the GitLab project, which you can refer to for some examples.

NOTE: It's possible to use quick actions in description templates to quickly add labels, assignees, and milestones. The quick actions are only executed if the user submitting the issue or merge request has the permissions to perform the relevant actions.

Here is an example of a bug report template:

## Summary

(Summarize the bug encountered concisely)

## Steps to reproduce

(How one can reproduce the issue - this is very important)

## Example Project

(If possible, please create an example project here on GitLab.com that exhibits the problematic
behavior, and link to it here in the bug report.
If you are using an older version of GitLab, this will also determine whether the bug has been fixed
in a more recent version)

## What is the current bug behavior?

(What actually happens)

## What is the expected correct behavior?

(What you should see instead)

## Relevant logs and/or screenshots

(Paste any relevant logs - please use code blocks (```) to format console output, logs, and code, as
it's very hard to read otherwise.)

## Possible fixes

(If you can, link to the line of code that might be responsible for the problem)

/label ~bug ~reproduced ~needs-investigation
/cc @project-manager
/assign @qa-tester