Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JENKINS-56935] Multibranch pipeline orphaned item strategy can't be set to 0 #199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
<f:optionalBlock title="${%Discard old items}" field="pruneDeadBranches" inline="true">
<f:entry title="${%Days to keep old items}"
description="${%if not empty, old items are only kept up to this number of days}" field="daysToKeepStr" >
<f:number clazz="positive-number" min="1" step="1" default=""/>
<f:number clazz="number" min="0" step="1" default=""/>
</f:entry>
<f:entry title="${%Max # of old items to keep}"
description="${%if not empty, only up to this number of old items are kept}" field="numToKeepStr">
<f:number clazz="positive-number" min="1" step="1" default=""/>
<f:number clazz="number" min="0" step="1" default=""/>
</f:entry>
</f:optionalBlock>
</j:jelly>