Closed pixeebot[bot] closed 9 months ago
Unable to locate .performanceTestingBot config file
Seems you are using me but didn't get OPENAI_API_KEY seted in Variables/Secrets for this repo. you could follow readme for more information
Processing PR updates...
[!IMPORTANT]
Auto Review Skipped
Bot user detected.
To trigger a single review, invoke the
@coderabbitai review
command.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Thanks @pixeebot[bot] for opening this PR!
For COLLABORATOR only :
To add labels, comment on the issue
/label add label1,label2,label3
To remove labels, comment on the issue
/label remove label1,label2,label3
PR Details of @pixeebot[bot] in svea_lli_firmware : | OPEN | CLOSED | TOTAL |
---|---|---|---|
1 | 2 | 3 |
Description has been updated!
Check out the playback for this Pull Request here.
Description
This pull request includes modifications to several files:
requirements.txt
,hook_generic_build.py
,hook_generic_deploy_keys_readable.py
,hook_local_ros_msgs.py
, andhook_remote_ros_msgs.py
. Here are the changes being made:In
requirements.txt
, a new dependencysecurity~=1.2.0
is added.In
hook_generic_build.py
:hook_pre_build
is modified to use thesafe_command
function from thesecurity
library instead of directly callingsubprocess.Popen
.In
hook_generic_deploy_keys_readable.py
:hook_pre_build
is modified to use thesafe_command
function from thesecurity
library instead of directly callingsubprocess.Popen
.In
hook_local_ros_msgs.py
:main
is modified to use thesafe_command
function from thesecurity
library instead of directly callingsubprocess.Popen
.In
hook_remote_ros_msgs.py
:main
is modified to use thesafe_command
function from thesecurity
library instead of directly callingsubprocess.Popen
.These changes aim to improve security by using the
safe_command
function instead of directly executingsubprocess.Popen
commands.