Skip to content

Commit d7d3958

Browse files
authored
fix: respect signoff in config (#2247)
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
1 parent 876e9a7 commit d7d3958

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/manifest.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export interface ReleaserConfig {
121121
releaseLabels?: string[];
122122
extraLabels?: string[];
123123
initialVersion?: string;
124+
signoff?: string;
124125

125126
// Changelog options
126127
changelogSections?: ChangelogSection[];
@@ -160,6 +161,7 @@ interface ReleaserConfigJson {
160161
'changelog-sections'?: ChangelogSection[];
161162
'release-as'?: string;
162163
'skip-github-release'?: boolean;
164+
signoff?: string;
163165
draft?: boolean;
164166
prerelease?: boolean;
165167
'draft-pull-request'?: boolean;
@@ -1358,6 +1360,7 @@ function extractReleaserConfig(
13581360
skipSnapshot: config['skip-snapshot'],
13591361
initialVersion: config['initial-version'],
13601362
excludePaths: config['exclude-paths'],
1363+
signoff: config['signoff'],
13611364
};
13621365
}
13631366

0 commit comments

Comments
 (0)