We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d108713 commit 2eb16f7Copy full SHA for 2eb16f7
src/github/nag.rs
@@ -154,8 +154,8 @@ fn evaluate_nags() -> DashResult<()> {
154
}
155
156
// look for any FCP proposals that entered FCP a week or more ago but aren't marked as closed
157
- let one_week_ago = UTC::now().naive_utc() - Duration::weeks(1);
158
- let finished_fcps = fcp_proposal.filter(fcp_start.le(one_week_ago))
+ let one_business_week_ago = UTC::now().naive_utc() - Duration::days(10);
+ let finished_fcps = fcp_proposal.filter(fcp_start.le(one_business_week_ago))
159
.filter(fcp_closed.eq(false))
160
.load::<FcpProposal>(conn)?;
161
0 commit comments