- improve setting the outputs when loading the pr data from the cache

This commit is contained in:
Mike Penz
2023-07-13 07:59:19 +00:00
committed by GitHub
parent 9f4822781f
commit f556874ff0
6 changed files with 50 additions and 39 deletions
-2
View File
@@ -91,7 +91,6 @@ export class PullRequestCollector {
failOrError(`💥 Missing or couldn't resolve 'toTag'`, this.failOnError)
return null
} else {
core.setOutput('toTag', thisTag.name)
core.debug(`Resolved 'toTag' as ${thisTag.name}`)
}
@@ -100,7 +99,6 @@ export class PullRequestCollector {
failOrError(`💥 Unable to retrieve previous tag given ${this.toTag}`, this.failOnError)
return null
}
core.setOutput('fromTag', previousTag.name)
core.debug(`fromTag resolved via previousTag as: ${previousTag.name}`)
if (this.fetchReleaseInformation) {