diff --git a/lib/workers/branch/__snapshots__/index.spec.ts.snap b/lib/workers/branch/__snapshots__/index.spec.ts.snap
index 945f5c3f247d143c0626683b686c8714bd662eb6..567b322f4c17af0c00afa4dfb98bfb67986855ef 100644
--- a/lib/workers/branch/__snapshots__/index.spec.ts.snap
+++ b/lib/workers/branch/__snapshots__/index.spec.ts.snap
@@ -220,7 +220,7 @@ exports[`workers/branch/index processBranch skips branch if not scheduled and no
 Object {
   "branchExists": true,
   "prNo": undefined,
-  "result": "not-scheduled",
+  "result": "update-not-scheduled",
 }
 `;
 
diff --git a/lib/workers/branch/index.ts b/lib/workers/branch/index.ts
index bb71ec0f49d51776440808068e480530da30f4a0..df50fb0dce883ff52efdb32930085a29b1caf03f 100644
--- a/lib/workers/branch/index.ts
+++ b/lib/workers/branch/index.ts
@@ -241,7 +241,7 @@ export async function processBranch(
         return {
           branchExists,
           prNo: branchPr?.number,
-          result: BranchResult.NotScheduled,
+          result: BranchResult.UpdateNotScheduled,
         };
       }
       // istanbul ignore if
diff --git a/lib/workers/types.ts b/lib/workers/types.ts
index d9a19e7fdfeb294f7e2ed5ce15cd5cddc9469415..248d451352a71f8b978d71c532eec0e10133aca6 100644
--- a/lib/workers/types.ts
+++ b/lib/workers/types.ts
@@ -89,6 +89,7 @@ export enum BranchResult {
   CommitLimitReached = 'commit-limit-reached',
   BranchLimitReached = 'branch-limit-reached',
   Rebase = 'rebase',
+  UpdateNotScheduled = 'update-not-scheduled',
 }
 
 export interface BranchConfig