Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: BlockeddByBranchAutomerge typo
  • Loading branch information
rarkins committed Jun 26, 2020
1 parent 63446a3 commit 1783c07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/workers/common.ts
Expand Up @@ -65,7 +65,7 @@ export enum PrResult {
AwaitingApproval = 'AwaitingApproval',
AwaitingGreenBranch = 'AwaitingGreenBranch',
AwaitingNotPending = 'AwaitingNotPending',
BlockeddByBranchAutomerge = 'BlockeddByBranchAutomerge',
BlockedByBranchAutomerge = 'BlockedByBranchAutomerge',
Created = 'Created',
Error = 'Error',
ErrorAlreadyExists = 'ErrorAlreadyExists',
Expand Down
2 changes: 1 addition & 1 deletion lib/workers/pr/index.ts
Expand Up @@ -152,7 +152,7 @@ export async function ensurePr(
logger.debug(`Branch tests failed, so will create PR`);
} else {
// Branch should be automerged, so we don't want to create a PR
return { prResult: PrResult.BlockeddByBranchAutomerge };
return { prResult: PrResult.BlockedByBranchAutomerge };
}
}
if (config.prCreation === 'status-success') {
Expand Down

0 comments on commit 1783c07

Please sign in to comment.