6
mirror of https://github.com/AllSpiceIO/post-dr-comment.git synced 2025-04-04 21:26:53 +00:00

Merge pull request from AllSpiceIO/su/dr-no-error

Raise a clearer error if design review number is not set
This commit is contained in:
Shrikanth Upadhayaya 2025-03-31 16:35:24 -04:00 committed by GitHub
commit 51bd2c25d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,6 +168,11 @@ def main():
args = parser.parse_args()
if not args.design_review_number.isdigit():
raise ValueError(
"Design review number is either not set or not a number; this run may not be on a pull request event?"
)
logger.setLevel(args.log_level.upper())
client = AllSpice(
args.allspice_hub_url,