Skip to content

Commit

Permalink
docs(cloudsmith): clarify Cloudsmith service account setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ivomurrell committed Dec 5, 2024
1 parent c6581f2 commit 9cbe3d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/schemas/src/plugins/cloudsmith.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { z } from 'zod'

export const CloudsmithSchema = z.object({
serviceAccount: z.string().optional().describe('the Cloudsmith service account')
serviceAccount: z
.string()
.optional()
.describe(
'the Cloudsmith service account. this will probably be your team name followed by the permissions access, e.g., cp-reliability-read-write.'
)
})

0 comments on commit 9cbe3d8

Please sign in to comment.