From da7f2eede8195f9a544aecbbb9c2ccd54ca83722 Mon Sep 17 00:00:00 2001 From: Andrey Sokolovskiy Date: Thu, 13 Jun 2024 10:39:11 +0700 Subject: [PATCH] test --- __init__.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/__init__.py b/__init__.py index 78ec060..285df6b 100644 --- a/__init__.py +++ b/__init__.py @@ -39,11 +39,12 @@ class GitlabPipelineSkill(Skill): return return_text async def _get_help(self): - return_text = f"*Help*\n" - return_text = f"{return_text}```gitlab help - returns this help screen```\n" - return_text = f"{return_text}```gitlab sites - returns avaiable gitlab sites```\n" - return_text = f"{return_text}```gitlab list projects - Returns project keywords and urls```\n" - return_text = f"{return_text}```gitlab pipeline last - Returns name, status and id for last pipeline in specific project```\n" + return_text = f"*Help*\n```" + return_text = f"{return_text} gitlab help - returns this help screen\n" + return_text = f"{return_text} gitlab sites - returns avaiable gitlab sites\n" + return_text = f"{return_text} gitlab list projects - Returns project keywords and urls\n" + return_text = f"{return_text} gitlab pipeline last - Returns name, status and id for last pipeline in specific project\n" + return_text = f"{return_text}```" # return_text = f"{return_text}```gitlab update inventory - Updates inventory sources for inventory in specific project```\n" # return_text = f"{return_text}```gitlab list running jobs - Returns information about running jobs for specific project```\n" # return_text = f"{return_text}```gitlab list failed jobs - Returns information about last 5 failed jobs for specific project```\n"