mirror of
https://github.com/AllSpiceIO/post-dr-comment.git
synced 2025-04-04 13:26:33 +00:00
Compare commits
18 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
51bd2c25d9 | ||
|
4e95d8d6a4 | ||
|
5858a5d3ac | ||
|
831bd5cb0f | ||
|
b133efd549 | ||
|
a338dddef8 | ||
cc4eab875e | |||
|
6e071eba2d | ||
4f2c3c21cf | |||
|
1e1ce27424 | ||
77568faa96 | |||
|
24f483cd60 | ||
601320e6ac | |||
|
4465b06465 | ||
31bbef1ff0 | |||
|
d358fd8b6a | ||
7ecfad7d8b | |||
|
741b40d81e |
@ -1,4 +1,4 @@
|
||||
FROM python:3.12-bookworm
|
||||
FROM python:3.11-bookworm
|
||||
|
||||
COPY requirements.txt /requirements.txt
|
||||
COPY post_dr_comment.py /post_dr_comment.py
|
||||
|
@ -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,
|
||||
|
@ -1 +1 @@
|
||||
ruff==0.6.4
|
||||
ruff==0.9.9
|
||||
|
@ -1,3 +1,3 @@
|
||||
py-allspice~=3.5.0
|
||||
py-allspice~=3.8.0
|
||||
PyYAML~=6.0.2
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user