Skip to content

Commit

Permalink
Merge pull request kubernetes#17766 from jherrera123/wip-handle-conve…
Browse files Browse the repository at this point in the history
…rted-to-draft

Relabel WIP issue when moving from normal to draft
  • Loading branch information
k8s-ci-robot committed May 30, 2020
2 parents ae791bb + 78c5f0e commit 2a63b65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prow/plugins/wip/wip-label.go
Expand Up @@ -76,7 +76,8 @@ func handlePullRequest(pc plugins.Agent, pe github.PullRequestEvent) error {
if pe.Action != github.PullRequestActionOpened &&
pe.Action != github.PullRequestActionReopened &&
pe.Action != github.PullRequestActionEdited &&
pe.Action != github.PullRequestActionReadyForReview {
pe.Action != github.PullRequestActionReadyForReview &&
pe.Action != github.PullRequestConvertedToDraft {
return nil
}

Expand Down

0 comments on commit 2a63b65

Please sign in to comment.