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

Co-authored-by: Shunsuke Mabuchi <mabuchs@amazon.co.jp>
pull/6049/head
Mab 2 years ago committed by GitHub
parent c436454cd4
commit 91c5818236
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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')

Loading…
Cancel
Save