Modify slack webhook url validation to allow workflow (#6041) (#6042)

Co-authored-by: Shunsuke Mabuchi <mabuchs@amazon.co.jp>
This commit is contained in:
Mab 2024-07-07 15:09:20 +09:00 committed by GitHub
parent c436454cd4
commit 91c5818236
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ class SlackWebhookTool(BuiltinTool):
webhook_url = tool_parameters.get('webhook_url', '')
if not webhook_url.startswith('https://hooks.slack.com/services/'):
if not webhook_url.startswith('https://hooks.slack.com/'):
return self.create_text_message(
f'Invalid parameter webhook_url ${webhook_url}, not a valid Slack webhook URL')