feature: cambio merge y tag para que el changelog se genere al crear un tag nuevo
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user