Skip to content

Commit b70cf3d

Browse files
committed
Allow up to 10 run tags
1 parent 87d80e3 commit b70cf3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/webapp/app/models/taskRunTag.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { prisma } from "~/db.server";
22
import { generateFriendlyId } from "~/v3/friendlyIdentifiers";
33

4-
export const MAX_TAGS_PER_RUN = 5;
4+
export const MAX_TAGS_PER_RUN = 10;
55

66
export async function createTag({ tag, projectId }: { tag: string; projectId: string }) {
77
if (tag.trim().length === 0) return;

packages/core/src/v3/types/tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ export type TaskRunOptions = {
597597
/**
598598
* Tags to attach to the run. Tags can be used to filter runs in the dashboard and using the SDK.
599599
*
600-
* You can set up to 5 tags per run, they must be less than 64 characters each.
600+
* You can set up to 10 tags per run, they must be less than 128 characters each.
601601
*
602602
* We recommend prefixing tags with a namespace using an underscore or colon, like `user_1234567` or `org:9876543`.
603603
*

0 commit comments

Comments
 (0)