mirror of
https://github.com/AllSpiceIO/post-dr-comment.git
synced 2025-04-04 21:26:53 +00:00
Merge pull request #12 from AllSpiceIO/su/dr-no-error
Raise a clearer error if design review number is not set
This commit is contained in:
commit
51bd2c25d9
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user