#{{ pull_request.number }} {{ pull_request.title }}
{{ pull_request.state }} · opened by {{ pull_request.author }} at · updated
Base: {{ pull_request.base_ref }} at {{ pull_request.base_object_id }}
Head: {{ pull_request.head_ref }} at {{ pull_request.head_object_id }}
Fetch: git fetch origin refs/pull/{{ pull_request.number }}/head
{{ body_html|safe }}
Comparison for revision {{ selected_revision }}
Merge base: {{ comparison.merge_base }}
Mergeability: {{ comparison.mergeability }}
Commits
{% if comparison.commits.is_empty() %}
This revision has no commits that are not in the base.
{% else %}
{% for commit in comparison.commits %}
{{ commit.id }} {{ commit.message }}
{% endfor %}
{% endif %}
Changed paths
{% if comparison.changed_paths.is_empty() %}
This revision does not change a path.
{% else %}
{% for path in comparison.changed_paths %}
{{ path }}
{% endfor %}
{% endif %}
Diff
{% for file in comparison.files %}
{{ file.path }}
{% if file.binary %}
This file has binary content.
{% else %}
{{ file.hunks }}
{% if can_review %}
{% endif %}
{% endif %}
{% endfor %}
{% if can_review %}