Skip to content

Commit

Permalink
Merge pull request #7063 from Checkmarx/AST-40784/add-max-length
Browse files Browse the repository at this point in the history
fix(githubactions): add max length
  • Loading branch information
gabriel-cx authored May 28, 2024
2 parents 165af4c + 5ea90c8 commit 07fc279
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/scripts/queries-validator/metadata-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
},
"queryName": {
"type": "string",
"minLength": 8
"minLength": 8,
"maxLength": 120
},
"severity": {
"type": "string",
Expand Down Expand Up @@ -75,7 +76,8 @@
},
"descriptionText": {
"type": "string",
"minLength": 16
"minLength": 16,
"maxLength" : 500
},
"descriptionUrl": {
"type": "string",
Expand Down

0 comments on commit 07fc279

Please sign in to comment.