-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add v6 search command Signed-off-by: Alex Goodman <[email protected]> * add json schema generation Signed-off-by: Alex Goodman <[email protected]> * add schema drift checks Signed-off-by: Alex Goodman <[email protected]> * add initial db search schemas Signed-off-by: Alex Goodman <[email protected]> * add readmes for schemas Signed-off-by: Alex Goodman <[email protected]> * add field comments to json schema Signed-off-by: Alex Goodman <[email protected]> * fix cpe and ecosystem filtering Signed-off-by: Alex Goodman <[email protected]> * mimic v5 help Signed-off-by: Alex Goodman <[email protected]> * fix cli test Signed-off-by: Alex Goodman <[email protected]> * keep config shape clean Signed-off-by: Alex Goodman <[email protected]> * add tests Signed-off-by: Alex Goodman <[email protected]> * address review comments Signed-off-by: Alex Goodman <[email protected]> * fix v5 namespace rhel and version cases Signed-off-by: Alex Goodman <[email protected]> * address pkg spec comments Signed-off-by: Alex Goodman <[email protected]> * fix limit handling Signed-off-by: Alex Goodman <[email protected]> * add any pkg helper Signed-off-by: Alex Goodman <[email protected]> * use loop var Signed-off-by: Alex Goodman <[email protected]> * add tests and fix deprecated linter configuration Signed-off-by: Alex Goodman <[email protected]> --------- Signed-off-by: Alex Goodman <[email protected]>
- Loading branch information
Showing
46 changed files
with
4,846 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
set -u | ||
|
||
if [ "$(git status --porcelain | wc -l)" -ne "0" ]; then | ||
echo " 🔴 there are uncommitted changes, please commit them before running this check" | ||
exit 1 | ||
fi | ||
|
||
if ! make generate-json-schema; then | ||
echo "Generating json schema failed" | ||
exit 1 | ||
fi | ||
|
||
if [ "$(git status --porcelain | wc -l)" -ne "0" ]; then | ||
echo " 🔴 there are uncommitted changes, please commit them before running this check" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.