> For the complete documentation index, see [llms.txt](https://docs.snyk.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.snyk.io/scan-fix-and-prevent/fix/snyk-pull-or-merge-requests/customize-pr-templates/variables-list-and-description.md).

# Variables list and description

{% tabs %}
{% tab title="API custom PR templates" %}
You can use the following variables in your template.

<mark style="color:purple;">**`jira_ids: string[]`**</mark>

A list of Jira tickets associated with the issues contained within the pull request. Ensure that the Snyk Jira integration is enabled on the Project or repository that contains the Project and that you have linked Snyk issues to JIRA tickets.

To automatically link Jira to the relevant pull requests, include a list of associated Jira tickets in the commit message.

**Input**

```json
{
    "data": {
        "attributes": {
            "commit_message": "This pull request is from Snyk and relates to {{ jira_ids }}" 
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The commit message of your PR will be:

```json
This pull request is from Snyk and relates to JIRA-1,JIRA-2,JIRA-3
```

This output indicates that the suggested solution successfully resolved three problems. It also includes links to every Jira ticket.

<mark style="color:purple;">**`snyk_project_url: string`**</mark>

This is the Snyk Project URL and can be used to link to the Snyk Project page.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "To find more details, see the Snyk project {{ snyk_project_url }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
To find more details, see the Snyk project https://app.snyk.io/org/my-org/project/xx-xxx-xx-xx
```

In this output, `my-org` is your Snyk Organization name and `xx-xxx-xx-xx-xxxx` is the public ID of your Project or repository.

<mark style="color:purple;">**`snyk_project_name: string`**</mark>

This is the Snyk Project name. You can add the Snyk Project name to your description.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "Fix applied to project {{ snyk_project_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
Fix applied to project my-org/project:filename
```

<mark style="color:purple;">**`snyk_org_name: string`**</mark>

This is the Snyk Organization name. You can add the Snyk Organization name to your description.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "Fix applied by {{ snyk_org_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
Fix applied by my-org
```

<mark style="color:purple;">**`package_name: string`**</mark>

This is the name of the package being fixed or upgraded. When more than one package is changed, this variable will default to the first one.

Follow this example to display in the description the package name of the first dependency being fixed in the PR.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "Fixes {{ package_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
Fixes adm-zip
```

<mark style="color:purple;">**`package_from: string`**</mark>

This is the version of the package that is being fixed or upgraded. In cases where more than one package is changed, this variable will default to the `from` version of the first one.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "Fix is applied by moving from {{ package_from}}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
Fix is applied by moving from 0.4.7
```

<mark style="color:purple;">**`package_to: string`**</mark>

The package is transitioning to this particular version. In cases where more than one package is changed, this variable will default to the `to` version of the first one.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "Fix is applied by moving to {{ package_to}}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
Fix is applied by moving to 0.5.2
```

<mark style="color:purple;">**`issue_count: number`**</mark>

This is the number of issues in your Project or repository that are covered by the PR.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "The PR will fix {{ issue_count }} issues."
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```yaml
The PR will fix 98 issues.
```

<mark style="color:purple;">**`product_is_container: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is a Snyk Container product. Currently, there are two different product types at Snyk that can open PRs (Snyk Open Source PRs and Snyk Container PRs). Using this variable will help you customize your template to differentiate between the two.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "{{ #product_is_container }} This Container PR has been opened to fix vulnerabilities in your project. {{ /product_is_container }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If your PR is an Open Source product, then the description of your PR will be:

```
This Container PR has been opened to fix vulnerabilities in your project
```

<mark style="color:purple;">**`product_is_open_source: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is an Open-Source product. Currently, Snyk has two different product types that can open PRs (Open-Source PRs and Container PRs). Using this variable will help you customize your template to differentiate between the two.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "{{ #product_is_open_source }} This Open Source PR has been opened to fix vulnerabilities in your project. {{ /product_is_open_source }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If your PR is an Open Source product then the description of your PR will be:

```
This Open Source PR has been opened to fix vulnerabilities in your project
```

<mark style="color:purple;">**`is_fix_pr: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is a backlog PR, for example, opened to fix new vulnerabilities introduced to the Project or repository in the latest scan. In the example below, you can see that the description of the PR will only show if it is a fixed PR.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "{{ #is_fix_pr }} This PR has been opened to fix vulnerabilities in your project. {{ /is_fix_pr }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If your PR is a fixed PR ,then the description of your PR will be:

```yaml
This PR has been opened to fix vulnerabilities in your project.
```

<mark style="color:purple;">**`is_backlog_pr: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is a backlog PR, for example, opened to fix known vulnerabilities already in the Project or repository. In the example below you can see that the description of the PR will only show if it is a backlog PR.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "{{ #is_backlog_pr }} This PR has been opened to fix known vulnerbilities. These vulnerabilities are retrieved from the Project's backlog. {{ /is_backlog_pr }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If your PR is a backlog PR then the description of your PR will be:

```yaml
This PR has been opened to fix known vulnerabilities. These vulnerabilities are retrieved from the Project's backlog.
```

<mark style="color:purple;">**`is_upgrade_pr: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is an Upgrade PR, or to upgrade dependencies to newer versions regardless of vulnerabilities. In the example below you can see that the description of the PR will only show if it is an upgrade PR.

**Input**

```json
{
    "data": {
        "attributes": {
            "description": "{{ #is_upgrade_pr }} This PR has been opened to make sure our repositories are kept up-to-date. It updates {{ package_name }} from version {{ package_from }} to version {{ package_to }}. Review relevant docs for possible breaking changes. {{ /is_upgrade_pr }} "
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If your PR is an upgrade PR then the description of your PR will be:

```json
This PR has been opened to make sure our repositories are kept up-to-date. It updates package-x from version 1.0.0 to version 2.0.0. Review relevant docs for possible breaking changes.
```

<mark style="color:purple;">**`files_changed`**</mark>

This variable can be used in your template to list the files changed as part of the pull request.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "Changes included in this PR: {{ files_changed }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If the pull request was for a maven project and the changes made were in the pom.xml file then this is what the description of your PR would look like.

```
Changes included in this PR: pom.xml
```

<mark style="color:purple;">**`container.recommended_base_image_name`**</mark>

This variable is for container projects only. It can be used to display the name of the recommended base image applied in this PR.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "We recommend upgrading to {{ container.recommended_base_image_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
We recommend upgrading to node:xx.xx.x
```

<mark style="color:purple;">**`container.current_base_image_name`**</mark>

This variable is for container projects only. It can be used to display the current base image.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "The current base image is: {{ container.current_base_image_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
The current base image is: node:xx.xx.x
```

<mark style="color:purple;">**`container.recommended_base_image_short_name`**</mark>

This variable is for container projects only. It extracts the short image name (image:tag) from the full recommended base image path by removing the registry prefix.

For example, `docker.io/library/node:18-alpine` becomes `node:18-alpine`.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "Upgrade to {{ container.recommended_base_image_short_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
Upgrade to node:18-alpine
```

<mark style="color:purple;">**`container.current_base_image_short_name`**</mark>

This variable is for container projects only. It extracts the short image name (image:tag) from the full current base image path by removing the registry prefix.

For example, `docker.io/library/node:16` becomes `node:16`.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "Upgrading from {{ container.current_base_image_short_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
Upgrading from node:16
```

<mark style="color:purple;">**`snyk_pull_request_type: prType (fix, upgrade, backlog, unknown)`**</mark>

This is the prType of your Project or repository. You can use it to display the PR type from the pull request description.

**Input**

```json
{
    "data": {
        "attributes": {
            "commit_message": "{{ snyk_pull_request_type}}: for {{ package_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If you have opened a Fix PR, then the commit message of your PR will be:

```yaml
fix: for package-x
```

{% endtab %}

{% tab title="YAML file custom PR templates" %}
You can use the following variables in your template. These variables can be used in any of the customizable PR properties.

<mark style="color:purple;">**`jira_ids: string[]`**</mark>

A list of Jira tickets associated with the issues contained within the pull request. Ensure that the Snyk Jira integration is enabled on the Project or repository that contains the Project and that you have linked Snyk issues to JIRA tickets.

To automatically link Jira to the relevant pull requests, include a list of associated Jira tickets in the commit message.

**Input**

```yaml
commitMessage: |
  This pull request is from Snyk and relates to {{ jira_ids }}
```

**Output**

The commit message of your PR will be:

```yaml
This pull request is from Snyk and relates to JIRA-1,JIRA-2,JIRA-3
```

This output indicates that the suggested solution successfully resolved three problems. It also includes links to every Jira ticket.

<mark style="color:purple;">**`snyk_project_url: string`**</mark>

This is the Snyk Project URL and can be used to link to the Snyk Project page.

**Input**

```yaml
description: |
  To find more details, see the Snyk project {{ snyk_project_url }}
```

**Output**

The description of your PR will be:

```yaml
To find more details, see the Snyk project https://app.snyk.io/org/my-org/project/xx-xxx-xx-xx
```

In this output, `my-org` is your Snyk Organization name and `xx-xxx-xx-xx-xxxx` is the public ID of your Project or repository.

<mark style="color:purple;">**`snyk_project_name: string`**</mark>

This is the Snyk Project name. You can add the Snyk Project name to your description.

**Input**

```yaml
description: |
  Fix applied to project {{ snyk_project_name }}
```

**Output**

The description of your PR will be:

```yaml
Fix applied to project my-org/project:filename
```

<mark style="color:purple;">**`snyk_org_name: string`**</mark>

This is the Snyk Organization name. You can add the Snyk Organization name to your description.

**Input**

```yaml
description: |
  Fix applied by {{ snyk_org_name }}
```

**Output**

The description of your PR will be:

```yaml
Fix applied by my-org
```

<mark style="color:purple;">**`package_name: string`**</mark>

This is the name of the package being fixed or upgraded. When more than one package is changed, this variable will default to the first one.

Follow this example to display in the description the package name of the first dependency being fixed in the PR.

**Input**

```yaml
description: |
  Fixes {{ package_name }}
```

**Output**

The description of your PR will be:

```yaml
Fixes adm-zip
```

<mark style="color:purple;">**`package_from: string`**</mark>

This is the version of the package that is being fixed or upgraded. In cases where more than one package is changed, this variable will default to the `from` version of the first one.

**Input**

```yaml
description: |
  Fix is applied by moving from {{ package_from}}

```

**Output**

The description of your PR will be:

```yaml
Fix is applied by moving from 0.4.7
```

<mark style="color:purple;">**`package_to: string`**</mark>

The package is transitioning to this particular version. In cases where more than one package is changed, this variable will default to the `to` version of the first one.

**Input**

```yaml
description: |
  Fix is applied by moving to {{ package_to}}

```

**Output**

The description of your PR will be:

```yaml
Fix is applied by moving to 0.5.2
```

<mark style="color:purple;">**`issue_count: number`**</mark>

This is the number of issues in your Project or repository that are covered by the PR.

**Input**

```yaml
description: |
   The PR will fix {{ issue_count }} issues.
```

**Output**

The description of your PR will be:

```yaml
The PR will fix 98 issues.

```

<mark style="color:purple;">**`product_is_container: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is a Container product. Currently there are two different product types at Snyk which can open PRs (Open Source PRs and Container Prs). Using this variable will help you customise your template to differentiate between the two.

**Input**

```
description: |
  {{ #product_is_container }}
  This Container PR has been opened to make sure our repositories are kept up-to-date.
  It updates {{ package_name }} from version {{ package_from }} to version {{ package_to }}.
  Review relevant docs for possible breaking changes.
  {{ /product_is_container }}
```

**Output**

If your project is a Container project, the description will be:

```
  This Container PR has been opened to make sure our repositories are kept up-to-date.
  It updates package x from version 1 to version 2.
  Review relevant docs for possible breaking changes.
```

<mark style="color:purple;">**`product_is_open_source: boolean`**</mark>

This variable can be used to customize attributes based on whether the PR is an Open Source product. Currently there are two different product types at Snyk which can open PRs (Open Source PRs and Container Prs). Using this variable will help you customise your template to differentiate between the two.

**Input**

```
description: |
  {{ #product_is_open_source }}
  This Open Source PR has been opened to make sure our repositories are kept up-to-date.
  It updates {{ package_name }} from version {{ package_from }} to version {{ package_to }}.
  Review relevant docs for possible breaking changes.
  {{ /product_is_open_source }}
```

**Output**

If your project is an Open Source project, the description will be:

```
  This Open Source PR has been opened to make sure our repositories are kept up-to-date.
  It updates package x from version 1 to version 2.
  Review relevant docs for possible breaking changes.
```

<mark style="color:purple;">**`is_fix_pr: boolean`**</mark>

This checks to determine whether the pull request is a fix PR, for example, opened to fix new vulnerabilities introduced to the Project or repository in the latest scan.

**Input**

```yaml
description: |
  Is this pr a fix pr? {{ is_fix_pr }}

```

**Output**

The description of your PR will be:

```yaml
Is this a fix pr? true
```

<mark style="color:purple;">**`is_backlog_pr: boolean`**</mark>

This checks to determine whether the pull request is a backlog PR, for example, opened to fix known vulnerabilities already in the Project or repository.

**Input**

```yaml
description: |
  Is this pr a backlog pr? {{ is_backlog_pr }}
```

**Output**

The description of your PR will be:

```yaml
Is this a backlog pr? false
```

<mark style="color:purple;">**`is_upgrade_pr: boolean`**</mark>

This checks whether the pull request is an upgrade PR, for example, opened to upgrade dependencies to newer versions regardless of vulnerabilities.

**Input**

```yaml
description: |
  Is this pr an upgrade pr? {{ is_upgrade_pr }}
```

**Output**

The description of your PR will be:

```yaml
Is this an upgrade pr? false
```

<mark style="color:purple;">**`files_changed`**</mark>

This variable can be used in your template to list the files changed as part of the pull request.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "Changes included in this PR: {{ files_changed }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

If the pull request was for a maven project and the changes made were in the pom.xml file then this is what the description of your PR would look like.

```
Changes included in this PR: pom.xml
```

<mark style="color:purple;">**`container.recommended_base_image_name`**</mark>

This variable is for container projects only. It can be used to display the name of the recommended base image applied in this PR.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "We recommend upgrading to {{ container.recommended_base_image_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
We recommend upgrading to node:xx.xx.x
```

<mark style="color:purple;">**`container.current_base_image_name`**</mark>

This variable is for container projects only. It can be used to display the current base image.

**Input**

```
{
    "data": {
        "attributes": {
            "description": "The current base image is: {{ container.current_base_image_name }}"
            
        },
        "type": "pull_request_template"
    }
}
```

**Output**

The description of your PR will be:

```
The current base image is: node:xx.xx.x
```

<mark style="color:purple;">**`container.recommended_base_image_short_name`**</mark>

This variable is for container projects only. It extracts the short image name (image:tag) from the full recommended base image path by removing the registry prefix.

For example, `docker.io/library/node:18-alpine` becomes `node:18-alpine`.

**Input**

```yaml
description: |
  Upgrade to {{ container.recommended_base_image_short_name }}
```

**Output**

The description of your PR will be:

```yaml
Upgrade to node:18-alpine
```

<mark style="color:purple;">**`container.current_base_image_short_name`**</mark>

This variable is for container projects only. It extracts the short image name (image:tag) from the full current base image path by removing the registry prefix.

For example, `docker.io/library/node:16` becomes `node:16`.

**Input**

```yaml
description: |
  Upgrading from {{ container.current_base_image_short_name }}
```

**Output**

The description of your PR will be:

```yaml
Upgrading from node:16
```

<mark style="color:purple;">**`snyk_pull_request_type: prType (fix, upgrade, backlog, unknown)`**</mark>

This is the prType of your Project or repository. You can use it to display the PR type from the pull request description.

**Input**

```yaml
description: |
  This is a {{ snyk_pull_request_type }} pull request
```

**Output**

The description of your PR will be:

```yaml
This is a fix pull request
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.snyk.io/scan-fix-and-prevent/fix/snyk-pull-or-merge-requests/customize-pr-templates/variables-list-and-description.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
