File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments