Skip to content

Commit 7de0fc4

Browse files
authored
Merge pull request #213 from adafruit/release-check-fix
Added more files to be ignored by release check
2 parents 6f44843 + 1e7e69f commit 7de0fc4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

adabot/lib/circuitpython_library_validators.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,17 @@ def _filter_file_diffs(filenames):
270270
_ignored_files = {
271271
"CODE_OF_CONDUCT.md",
272272
"LICENSE",
273+
"LICENSES/*",
274+
"*.license",
273275
"setup.py.disabled",
276+
".github/workflows/build.yml",
277+
".github/workflows/release.yml",
278+
".pre-commit-config.yaml",
279+
".pylintrc",
280+
".gitignore",
281+
"CODE_OF_CONDUCT.md",
282+
"README.rst",
283+
"pyproject.toml",
274284
}
275285
compare_files = [
276286
name for name in filenames if not name.startswith(".")
@@ -333,7 +343,6 @@ def _filter_file_diffs(filenames):
333343
file["filename"] for file in compare_tags_json.get("files")
334344
]
335345
filtered_files = _filter_file_diffs(comp_filenames)
336-
337346
if filtered_files:
338347
oldest_commit_date = datetime.datetime.today()
339348
for commit in compare_tags_json["commits"]:

0 commit comments

Comments
 (0)