From 09c0f905d8b20b585b0bc8183f14250d1a381ca0 Mon Sep 17 00:00:00 2001 From: Paul Canning Date: Sat, 23 Nov 2024 09:13:51 +0000 Subject: [PATCH] docs(tips): extend the merge commit filter example (#963) --- website/docs/tips-and-tricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tips-and-tricks.md b/website/docs/tips-and-tricks.md index 7649ac7ccb..046e1691d3 100644 --- a/website/docs/tips-and-tricks.md +++ b/website/docs/tips-and-tricks.md @@ -40,7 +40,7 @@ Then strip the tags in the template with the series of filters: ## Filter merge commits ```jinja2 -{% for group, commits in commits | filter(attribute="merge_commit", value=false) %} +{% for group, commits in commits | filter(attribute="merge_commit", value=false) | group_by(attribute="group") %} ``` ## Remove gitmoji