- introduce proper configuration for fetchReviews
- drop no longer needed limiting of PRs - retrieve state from PR review comment
This commit is contained in:
@@ -40,6 +40,7 @@ async function run(): Promise<void> {
|
||||
const failOnError = core.getInput('failOnError') === 'true'
|
||||
const fetchReviewers = core.getInput('fetchReviewers') === 'true'
|
||||
const fetchReleaseInformation = core.getInput('fetchReleaseInformation') === 'true'
|
||||
const fetchReviews = core.getInput('fetchReviews') === 'true'
|
||||
const commitMode = core.getInput('commitMode') === 'true'
|
||||
|
||||
const result = await new ReleaseNotesBuilder(
|
||||
@@ -55,6 +56,7 @@ async function run(): Promise<void> {
|
||||
ignorePreReleases,
|
||||
fetchReviewers,
|
||||
fetchReleaseInformation,
|
||||
fetchReviews,
|
||||
commitMode,
|
||||
configuration
|
||||
).build()
|
||||
|
||||
Reference in New Issue
Block a user