Skip to content

Commit

Permalink
Merge pull request #92 from olehermanse/master
Browse files Browse the repository at this point in the history
SEC-880: Changed timeframe for stale dependabot PRs from 21 to 30 days
  • Loading branch information
olehermanse authored Sep 12, 2023
2 parents a6930b5 + 6fc1b0e commit 4906ac8
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 4906ac8

Please sign in to comment.