diff --git a/__init__.py b/__init__.py index c7c2c61..6c90375 100644 --- a/__init__.py +++ b/__init__.py @@ -65,3 +65,7 @@ class GitlabPipelineSkill(Skill): async def list_gitlab_sites(self, message): sites_print = [i for i in self.config['sites']] await message.respond(f"{sites_print}") + + @match_regex(r"^ping") + async def ping(self, event): + await event.respond('World')