Skip to content

Commit

Permalink
fix: respect signoff in config (#2247)
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
  • Loading branch information
shanduur authored Mar 29, 2024
1 parent 876e9a7 commit d7d3958
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export interface ReleaserConfig {
releaseLabels?: string[];
extraLabels?: string[];
initialVersion?: string;
signoff?: string;

// Changelog options
changelogSections?: ChangelogSection[];
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -1358,6 +1360,7 @@ function extractReleaserConfig(
skipSnapshot: config['skip-snapshot'],
initialVersion: config['initial-version'],
excludePaths: config['exclude-paths'],
signoff: config['signoff'],
};
}

Expand Down

0 comments on commit d7d3958

Please sign in to comment.