File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/core/src/v3/types Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { prisma } from "~/db.server" ;
2
2
import { generateFriendlyId } from "~/v3/friendlyIdentifiers" ;
3
3
4
- export const MAX_TAGS_PER_RUN = 5 ;
4
+ export const MAX_TAGS_PER_RUN = 10 ;
5
5
6
6
export async function createTag ( { tag, projectId } : { tag : string ; projectId : string } ) {
7
7
if ( tag . trim ( ) . length === 0 ) return ;
Original file line number Diff line number Diff line change @@ -597,7 +597,7 @@ export type TaskRunOptions = {
597
597
/**
598
598
* Tags to attach to the run. Tags can be used to filter runs in the dashboard and using the SDK.
599
599
*
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.
601
601
*
602
602
* We recommend prefixing tags with a namespace using an underscore or colon, like `user_1234567` or `org:9876543`.
603
603
*
You can’t perform that action at this time.
0 commit comments