Skip to content
Merged
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
6 changes: 4 additions & 2 deletions evergreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,13 @@ def main(): # pragma: no cover
except github3.exceptions.NotFoundError:
pass

if is_repo_created_date_before(repo.created_at, created_after_date):
if created_after_date and is_repo_created_date_before(
repo.created_at, created_after_date
):
print("Skipping " + repo.full_name + " (created after filter)")
continue

print("Checking " + repo.full_name + "for compatible package managers")
print("Checking " + repo.full_name + " for compatible package managers")
# Try to detect package managers and build a dependabot file
dependabot_file = build_dependabot_file(
repo, group_dependencies, exempt_ecosystems
Expand Down