From 4fdd5b54ba1b5a319022963af607bfb9294ada3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 18 Dec 2024 15:43:42 +0100 Subject: [PATCH] Add the missing modules entrypoints --- github_app_geo_project/module/backport/__init__.py | 2 +- pyproject.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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"