| 1234567891011121314151617181920212223 |
- """
- GitHub Actions module commands and functionality.
- Manage GitHub Actions workflows and CI/CD and template operations.
- """
- from pathlib import Path
- from typing import List, Optional
- import typer
- from rich.table import Table
- from ...core.command import BaseModule
- class GitHubActionsModule(BaseModule):
- """Module for managing github actions configurations."""
-
- def __init__(self):
- super().__init__(name="github_actions", icon="🚀", description="Manage GitHub Actions workflows and CI/CD")
- def add_module_commands(self, app: typer.Typer) -> None:
- """Add Module-specific commands to the app."""
- pass
|