From 4da4b3fa8e227249f8f742cf755dda2374cafe3d Mon Sep 17 00:00:00 2001 From: "Federico M. Facca" Date: Wed, 3 May 2023 14:22:34 +0200 Subject: [PATCH] add `number` in the list of properties supported for rules --- src/configuration.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/configuration.ts b/src/configuration.ts index e233d85..d934688 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -31,6 +31,7 @@ export interface Category { * Defines the properties of the PullRequestInfo useable in different configurations */ export type Property = + | 'number' | 'title' | 'branch' | 'author'