Skip to content

Commit af7ec45

Browse files
committed
Change pathlib iterator as actions/folder/file layout not actions/file
1 parent b57b6a8 commit af7ec45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def template_workflows(self) -> list[Path]:
2222
@property
2323
def actions(self) -> list[Path]:
2424
gh_actions = self.PARENT_PATH / ".github" / "actions"
25-
return [f for f in gh_actions.iterdir() if f.is_file()]
25+
return [f for f in gh_actions.rglob("*") if f.is_file()]
2626

2727
@hookimpl
2828
def prepare_release_update_version(self, session, config, version):

0 commit comments

Comments
 (0)