Skip to content

Commit c48b033

Browse files
committed
pkg/kepval: require prr check for implemented keps
Tests will fail at this commit, subsequent commits update data to resolve the failures.
1 parent e7f51ff commit c48b033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/kepval/approval.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func ValidatePRR(kep *api.Proposal, h *api.PRRHandler, prrDir string) error {
100100
func isPRRRequired(kep *api.Proposal) (required, missingMilestone, missingStage bool, err error) {
101101
logrus.Debug("checking if PRR is required")
102102

103-
required = kep.Status == api.ImplementableStatus
103+
required = kep.Status == api.ImplementableStatus || kep.Status == api.ImplementedStatus
104104
missingMilestone = kep.IsMissingMilestone()
105105
missingStage = kep.IsMissingStage()
106106

0 commit comments

Comments
 (0)