We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44a32e commit 421eaecCopy full SHA for 421eaec
.github/actions/restore_artifacts/restore_artifacts.py
@@ -33,10 +33,10 @@ def include_filter(include_list: set | list):
33
"""
34
Returns input for shutil.copytree ignore - to copy only files from include list
35
36
- def _filter(_, files: list):
+ def _filter(root, files: list):
37
if not include_list:
38
return []
39
- return [f for f in files if f not in include_list]
+ return [f for f in files if f not in include_list and Path(root).name not in include_list]
40
41
return _filter
42
0 commit comments