Remove url checking in workflow run (#12743)

## Before

<img width="1064" alt="image"
src="https://github.com/user-attachments/assets/4f9081d7-1e2d-438b-b7ac-8537c1f3a676"
/>

## After

<img width="1062" alt="image"
src="https://github.com/user-attachments/assets/2463f21c-f0e9-4c8c-b91e-55181bad8799"
/>
This commit is contained in:
martmull
2025-06-19 18:01:37 +02:00
committed by GitHub
parent 2d6d5bf7d6
commit b778b6ebad

View File

@ -113,7 +113,7 @@ export const workflowFormActionSettingsSchema =
export const workflowHttpRequestActionSettingsSchema =
baseWorkflowActionSettingsSchema.extend({
input: z.object({
url: z.string().url(),
url: z.string(),
method: z.enum(['GET', 'POST', 'PUT', 'PATCH', 'DELETE']),
headers: z.record(z.string()).optional(),
body: z