Skip to content

Commit

Permalink
SEC-880: Changed timeframe for stale dependabot PRs from 21 to 30 days
Browse files Browse the repository at this point in the history
See:
https://northerntech.atlassian.net/browse/SEC-880

Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
  • Loading branch information
olehermanse committed Sep 12, 2023
1 parent a6930b5 commit 6fc1b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tom/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def dump(self):
data["created"] = str(pr.created)
data["author"] = pr.author
all.append(data)
if datetime.datetime.now() - pr.created < datetime.timedelta(days=21):
if datetime.datetime.now() - pr.created < datetime.timedelta(days=30):
continue
if pr.author == "dependabot[bot]":
dependabot.append(data)
Expand Down

0 comments on commit 6fc1b0e

Please sign in to comment.