Skip to content

Commit

Permalink
fix: allow "fbc" as product_version (#770)
Browse files Browse the repository at this point in the history
It turns out that's what's commonly used in
the konflux-release-data repo and also
what the CI tests in that repo enforce.

Signed-off-by: Martin Malina <[email protected]>
  • Loading branch information
mmalina authored Jan 16, 2025
1 parent 5277b48 commit f1066a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/dataKeys.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"product_version": {
"type": "string",
"description": "The product version e.g v1.0.0",
"pattern": "^(fbc[-]|[vV])?(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:\\.(?:0|[1-9]\\d*))?([-\\s]?([Aa]lpha|[Bb]eta|fast|tech[-\\s]preview)?)$"
"pattern": "^fbc|(fbc[-]|[vV])?(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:\\.(?:0|[1-9]\\d*))?([-\\s]?([Aa]lpha|[Bb]eta|fast|tech[-\\s]preview)?)$"
},
"product_stream": {
"type": "string",
Expand Down

0 comments on commit f1066a9

Please sign in to comment.