Skip to content

Commit

Permalink
Merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyskoedijk committed Nov 18, 2024
1 parent 14d93b8 commit 1ef989e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export class DependabotOutputProcessor implements IDependabotUpdateOutputProcess
const pullRequestToUpdate = this.getPullRequestForDependencyNames(packageManager, data['dependency-names']);
if (!pullRequestToUpdate) {
error(
`Could not find pull request to update for package manager '${packageManager}' and dependencies '${data['dependency-names'].join(', ')}'`,
`Could not find pull request to update for package manager '${packageManager}' with dependencies '${data['dependency-names'].join(', ')}'`,
);
return false;
}
Expand Down Expand Up @@ -254,7 +254,7 @@ export class DependabotOutputProcessor implements IDependabotUpdateOutputProcess
const pullRequestToClose = this.getPullRequestForDependencyNames(packageManager, data['dependency-names']);
if (!pullRequestToClose) {
error(
`Could not find pull request to close for package manager '${packageManager}' and dependencies '${data['dependency-names'].join(', ')}'`,
`Could not find pull request to close for package manager '${packageManager}' with dependencies '${data['dependency-names'].join(', ')}'`,
);
return false;
}
Expand Down

0 comments on commit 1ef989e

Please sign in to comment.