diff --git a/github_app_geo_project/module/backport/__init__.py b/github_app_geo_project/module/backport/__init__.py index 1a7059c20a..7d9cdb0482 100644 --- a/github_app_geo_project/module/backport/__init__.py +++ b/github_app_geo_project/module/backport/__init__.py @@ -25,7 +25,7 @@ class _ActionData(BaseModel): branch: str | None = None -class Clean(module.Module[configuration.BackportConfiguration, _ActionData, None]): +class Backport(module.Module[configuration.BackportConfiguration, _ActionData, None]): """Module used to backport a pull request to an other branch.""" def title(self) -> str: diff --git a/pyproject.toml b/pyproject.toml index 1442786060..fca276de21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,8 @@ pull-request-checks = "github_app_geo_project.module.pull_request.checks:Checks" pull-request-links = "github_app_geo_project.module.pull_request.links:Links" delete-old-workflow-runs = "github_app_geo_project.module.delete_old_workflow_runs:DeleteOldWorkflowRuns" dispatch-publishing = "github_app_geo_project.module.dispatch_publishing:DispatchPublishing" +clean = "github_app_geo_project.module.clean:Clean" +backport = "github_app_geo_project.module.backport:Backport" [tool.poetry.dependencies] python = ">=3.11,<3.13"