We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aca955d + c8919e0 commit 8983820Copy full SHA for 8983820
evergreen.py
@@ -80,8 +80,8 @@ def main(): # pragma: no cover
80
print("Skipping " + repo.full_name + " (visibility-filtered)")
81
continue
82
existing_config = None
83
- filename_list = [".github/dependabot.yml", ".github/dependabot.yaml"]
84
- dependabot_filename_to_use = None
+ filename_list = [".github/dependabot.yaml", ".github/dependabot.yml"]
+ dependabot_filename_to_use = filename_list[0] # Default to the first filename
85
for filename in filename_list:
86
existing_config = check_existing_config(repo, filename, update_existing)
87
if existing_config:
0 commit comments