Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: restrict run count to 5

+1
+1
apps/server/src/v1/check/schema.ts
··· 11 11 .extend({ 12 12 runCount: z 13 13 .number() 14 + .max(5) 14 15 .optional() 15 16 .default(1) 16 17 .openapi({ description: "The number of times to run the check" }),