From 1f65d316018d9b4db083f8d70b1817f976c3be8b Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Thu, 22 Aug 2024 18:02:08 +0200 Subject: [PATCH] feat(templates): allow `isMinor` (#30966) --- lib/util/template/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/util/template/index.ts b/lib/util/template/index.ts index b1704195237403..f7af17fdd61b03 100644 --- a/lib/util/template/index.ts +++ b/lib/util/template/index.ts @@ -176,6 +176,7 @@ export const allowedFields = { isGroup: 'true if the upgrade is part of a group', isLockfileUpdate: 'true if the branch is a lock file update', isMajor: 'true if the upgrade is major', + isMinor: 'true if the upgrade is minor', isPatch: 'true if the upgrade is a patch upgrade', isPin: 'true if the upgrade is pinning dependencies', isPinDigest: 'true if the upgrade is pinning digests',