Skip to content

Commit

Permalink
Lower the days (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpar authored Dec 30, 2023
1 parent eeb9405 commit cf60912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DevOps.Util.DotNet/Function/FunctionUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public async Task OnPullRequestMergedAsync(
/// </summary>
public async Task<int> DeleteOldBuilds(TriageContext triageContext, int deleteMax = 25)
{
var limitDays = 21;
var limitDays = 14;
var limit = DateTime.UtcNow - TimeSpan.FromDays(limitDays);
var count = 0;

Expand Down

0 comments on commit cf60912

Please sign in to comment.