Skip to content

Commit

Permalink
fix: change branch size max length to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
LironEr committed Feb 7, 2024
1 parent 12effce commit f9a3858
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions service/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist
private
.vercel
8 changes: 4 additions & 4 deletions service/src/consts/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const CommitRecordPayload = {
branch: {
type: 'string',
minLength: 1,
maxLength: 100,
maxLength: 200,
},
commitSha: {
type: 'string',
Expand All @@ -221,7 +221,7 @@ export const CommitRecordPayload = {
baseBranch: {
type: 'string',
minLength: 1,
maxLength: 100,
maxLength: 200,
},
prNumber: {
type: 'string',
Expand Down Expand Up @@ -716,7 +716,7 @@ export const CommitRecord = {
branch: {
type: 'string',
minLength: 1,
maxLength: 100,
maxLength: 200,
},
commitSha: {
type: 'string',
Expand All @@ -727,7 +727,7 @@ export const CommitRecord = {
baseBranch: {
type: 'string',
minLength: 1,
maxLength: 100,
maxLength: 200,
},
prNumber: {
type: 'string',
Expand Down

0 comments on commit f9a3858

Please sign in to comment.