This commit is contained in:
Andrey Sokolovskiy 2024-06-12 23:47:27 +07:00
parent 17e751ea21
commit 5686d1c79f

View File

@ -34,8 +34,8 @@ class GitlabPipelineSkill(Skill):
data = await self._rest_call(site, api_url, "get")
return_text = f"*For site {site} latest - Pipline*\n"
for i in data["results"]:
return_text = f"{return_text}```Pipeline ID: {i['id']} Project ID: {i['project_id']}
Name: {i['name']} Status: {i['status']} ```\n"
return_text = (f"{return_text}```Pipeline ID: {i['id']} Project ID: {i['project_id']}\n"
f"Name: {i['name']} Status: {i['status']} ```\n")
return return_text
async def _get_help(self):