From 810d99d9724cecbe9567dbbf489c09f06627d330 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 12 Jan 2025 17:58:35 -0500 Subject: [PATCH] build(cliff): rename `commit.github` to `commit.remote` `commit.github` & friends are marked as deprecated --- .github/cliff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/cliff.toml b/.github/cliff.toml index 95204113..5e0bc8e2 100644 --- a/.github/cliff.toml +++ b/.github/cliff.toml @@ -16,13 +16,13 @@ body = """ {% for commit in commits%}\ {% if not commit.scope %}\ - {{ commit.message | upper_first }}\ - {% if commit.github.pr_number %} (){%- endif %} + {% if commit.remote.pr_number %} (){%- endif %} {% endif %}\ {% endfor %}\ {% for group, commits in commits | group_by(attribute="scope") %}\ {% for commit in commits %}\ - **{{commit.scope}}**: {{ commit.message | upper_first }}\ - {% if commit.github.pr_number %} (){%- endif %} + {% if commit.remote.pr_number %} (){%- endif %} {% endfor %}\ {% endfor %} {% endfor %}