feature: cambio merge y tag para que el changelog se genere al crear un tag nuevo

This commit is contained in:
jt
2025-11-19 20:43:22 -03:00
parent 30c6c36beb
commit be87c2098b
15 changed files with 1036 additions and 233 deletions
+21
View File
@@ -0,0 +1,21 @@
from git_flow import GitFlowError
from git_flow.remote.base import RemoteAPI
class GithubRemoteAPI(RemoteAPI):
API_ENDPOINT = "https://github.com"
def create_pull_request(
self,
source: str,
destination: str,
title: str | None = None,
description: str | None = None,
) -> str:
raise GitFlowError("not implemented yet!")
def create_tag(self, tag: str, commit: str) -> str:
raise GitFlowError("not implemented yet!")
def get_endpoint(self, resource: str) -> str:
return GithubRemoteAPI.API_ENDPOINT