- add new configuration to enable exportCache (disabled by default)
- this changes behavior since `rc04`
This commit is contained in:
@@ -55,6 +55,7 @@ async function run(): Promise<void> {
|
||||
const fetchReleaseInformation = core.getInput('fetchReleaseInformation') === 'true'
|
||||
const fetchReviews = core.getInput('fetchReviews') === 'true'
|
||||
const commitMode = core.getInput('commitMode') === 'true'
|
||||
const exportCache = core.getInput('exportCache') === 'true'
|
||||
const exportOnly = core.getInput('exportOnly') === 'true'
|
||||
|
||||
const result = await new ReleaseNotesBuilder(
|
||||
@@ -73,6 +74,7 @@ async function run(): Promise<void> {
|
||||
fetchReleaseInformation,
|
||||
fetchReviews,
|
||||
commitMode,
|
||||
exportCache,
|
||||
exportOnly,
|
||||
configuration
|
||||
).build()
|
||||
|
||||
Reference in New Issue
Block a user