Skip to content

Commit

Permalink
Merge pull request #649 from camptocamp/fill-entry-point
Browse files Browse the repository at this point in the history
Add the missing modules entrypoints
  • Loading branch information
sbrunner authored Dec 18, 2024
2 parents ad2a4d5 + 4fdd5b5 commit cf1ed55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/backport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cf1ed55

Please sign in to comment.