File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1146,15 +1146,15 @@ export class Manifest {
11461146 existing : PullRequest ,
11471147 pullRequest : ReleasePullRequest
11481148 ) : Promise < PullRequest | undefined > {
1149- // If unchanged, no need to push updates
1149+ // If the body and title are unchanged, update anyways since some commits that are not included in the PR body
1150+ // may have been added
11501151 if (
11511152 existing . title === pullRequest . title . toString ( ) &&
11521153 existing . body === pullRequest . body . toString ( )
11531154 ) {
11541155 this . logger . info (
1155- `PR https://github.com/${ this . repository . owner } /${ this . repository . repo } /pull/${ existing . number } remained the same`
1156+ `PR https://github.com/${ this . repository . owner } /${ this . repository . repo } /pull/${ existing . number } remained the same - continuing anyways `
11561157 ) ;
1157- return undefined ;
11581158 }
11591159
11601160 const updatedPullRequest = await this . github . updatePullRequest (
You can’t perform that action at this time.
0 commit comments