(workflows_dir: Path)
| 136 | |
| 137 | |
| 138 | def workflow_files(workflows_dir: Path) -> list[Path]: |
| 139 | files = [*workflows_dir.glob("*.yml"), *workflows_dir.glob("*.yaml")] |
| 140 | return sorted(path for path in files if path.is_file()) |
| 141 | |
| 142 | |
| 143 | def parse_args(argv: list[str]) -> argparse.Namespace: |