From 1c817bff7ab531734667f4c9b2eccde7f4177d33 Mon Sep 17 00:00:00 2001 From: Mateusz Urbanek Date: Sat, 16 Mar 2024 21:30:18 +0100 Subject: [PATCH] fix: respect signoff in config Signed-off-by: Mateusz Urbanek --- src/manifest.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/manifest.ts b/src/manifest.ts index cd4c67821..be5c0ed96 100644 --- a/src/manifest.ts +++ b/src/manifest.ts @@ -121,6 +121,7 @@ export interface ReleaserConfig { releaseLabels?: string[]; extraLabels?: string[]; initialVersion?: string; + signoff?: string; // Changelog options changelogSections?: ChangelogSection[]; @@ -160,6 +161,7 @@ interface ReleaserConfigJson { 'changelog-sections'?: ChangelogSection[]; 'release-as'?: string; 'skip-github-release'?: boolean; + signoff?: string; draft?: boolean; prerelease?: boolean; 'draft-pull-request'?: boolean; @@ -1358,6 +1360,7 @@ function extractReleaserConfig( skipSnapshot: config['skip-snapshot'], initialVersion: config['initial-version'], excludePaths: config['exclude-paths'], + signoff: config['signoff'], }; }