From 8f097d3e71dd59f45cf908f1f3db95e87561511a Mon Sep 17 00:00:00 2001 From: jordycosta Date: Tue, 17 Oct 2023 11:22:21 -0700 Subject: [PATCH] add !isDraft() conditional to isReady() This will remove pull requests that are drafts out of the 'Ready' column --- frontend/src/pull.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/pull.ts b/frontend/src/pull.ts index d4543486..3a65ce84 100644 --- a/frontend/src/pull.ts +++ b/frontend/src/pull.ts @@ -123,6 +123,7 @@ export class Pull extends PullData { isReady(): boolean { return ( this.hasMetDeployRequirements() && + !this.isDraft() && !this.getDevBlock() && !this.getDeployBlock() && !this.hasMergeConflicts()