github_actions.py 374 B

123456789101112
  1. from ..core.module import Module
  2. from ..core.registry import registry
  3. class GitHubActionsModule(Module):
  4. """Module for managing GitHub Actions workflows."""
  5. name = "github-actions"
  6. description = "Manage GitHub Actions workflows"
  7. files = ["action.yml", "action.yaml", "workflow.yml", "workflow.yaml"]
  8. # Register the module
  9. registry.register(GitHubActionsModule)