File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 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):
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" ]:
You can’t perform that action at this time.
0 commit comments