Skip to content

Commit

Permalink
add that unstable mergeable status can be pending
Browse files Browse the repository at this point in the history
  • Loading branch information
ClairePhi committed Feb 23, 2024
1 parent 8719575 commit fccb95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (s *status) isMergeable(ctx context.Context, pr *core.LocalPr) (bool, error
case "blocked":
return false, errors.New("not authorized to merge")
case "unstable":
return false, errors.New("has some failing checks")
return false, errors.New("has some failing or pending checks")
case "draft":
return false, errors.New("draft PR")
case "clean":
Expand Down

0 comments on commit fccb95a

Please sign in to comment.