You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The path to the trigger.config.ts file. Only used when the trigger.config.ts file is not at the root dir (like in a monorepo setup). If not provided, we will try to find the config file in the current working directory"
523
+
)
524
+
.optional(),
525
+
environment: z
526
+
.enum(["dev","staging","preview","production"])
527
+
.describe("The environment to trigger the task in")
528
+
.default("dev"),
529
+
branch: z
530
+
.string()
531
+
.describe("The branch to trigger the task in, only used for preview environments")
532
+
.optional(),
533
+
runId: z.string().describe("The ID of the run to get the details of, starts with run_"),
`This MCP server is only available for the dev environment. You tried to access the ${environment} environment. Remove the --dev-only flag to access other environments.`
0 commit comments