File tree 1 file changed +10
-1
lines changed 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,17 @@ def _filter_file_diffs(filenames):
270
270
_ignored_files = {
271
271
"CODE_OF_CONDUCT.md" ,
272
272
"LICENSE" ,
273
+ "LICENSES/*" ,
274
+ "*.license" ,
273
275
"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" ,
274
284
}
275
285
compare_files = [
276
286
name for name in filenames if not name .startswith ("." )
@@ -333,7 +343,6 @@ def _filter_file_diffs(filenames):
333
343
file ["filename" ] for file in compare_tags_json .get ("files" )
334
344
]
335
345
filtered_files = _filter_file_diffs (comp_filenames )
336
-
337
346
if filtered_files :
338
347
oldest_commit_date = datetime .datetime .today ()
339
348
for commit in compare_tags_json ["commits" ]:
You can’t perform that action at this time.
0 commit comments