Conversation
|
Report bugs in Issues The following are automatically added:
Available user actions:
Supported /retest check runs
Supported labels
|
WalkthroughThe pull request updates the Dockerfile, Changes
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
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? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 3
🧹 Outside diff range and nitpick comments (6)
entrypoint.sh (1)
Line range hint
1-18: Overall changes require consistency in Poetry removalWhile the
SERVER_RUN_CMDhas been updated to remove thepoetry runprefix, which aligns with the PR objective of transitioning from Poetry to uv, the script executions on lines 10 and 11 still usepoetry run. This inconsistency needs to be addressed to fully implement the transition away from Poetry.To ensure a consistent approach throughout the script:
- Remove all instances of
poetry run.- Verify that the Python environment is correctly set up to run
uvicornand the utility scripts without Poetry.- Update the execution of utility scripts to use either
pythonor make them executable, depending on your preferred approach.These changes will help maintain consistency and fully achieve the PR objective of transitioning from Poetry to uv.
pyproject.toml (1)
64-65: UV tool configuration is good, consider additional dev-dependencies.The addition of the UV tool configuration for managing dev-dependencies is a good practice. The inclusion of ipdb and ipython as dev-dependencies is appropriate for debugging purposes.
Consider adding other common development tools to the dev-dependencies, such as:
blackfor code formattingflake8for lintingmypyfor static type checking
These tools can help maintain code quality and consistency across the project.webhook_server_container/libs/github_api.py (4)
1098-1098: LGTM! Consider adding a comment for clarity.The change from directly using Python to using
uvxaligns with the PR objective of transitioning from Poetry to UV. This modification looks good.Consider adding a brief comment explaining the use of 'uvx', such as:
# Use uvx to run tox with the specified Python version cmd = f"uvx --python {self.tox_python_version} {TOX_STR}"This will help future maintainers understand the reason for using 'uvx'.
1125-1125: LGTM! Consider adding a comment for consistency.The change to use
uvxfor running pre-commit is consistent with the PR objective and the changes in the _run_tox method. This modification looks good.For consistency with the _run_tox method and to improve maintainability, consider adding a brief comment explaining the use of 'uvx', such as:
# Use uvx to run pre-commit cmd = f"uvx {PRE_COMMIT_STR} run --all-files"This will help maintain consistency in code documentation.
Line range hint
1-1639: Consider a broader review for remaining Poetry referencesThe changes in this file successfully implement the use of 'uv' (via 'uvx') in place of Poetry for running tox and pre-commit. However, given the PR objective to transition from Poetry to UV, it might be beneficial to conduct a broader review of the codebase.
Consider running a search across the entire codebase for any remaining references to Poetry that might need updating. This will ensure a complete transition to UV. You can use a command like:
rg 'poetry' --type pythonThis will help identify any other files or code segments that might need attention in this transition.
Line range hint
1-1639: Consider refactoring for improved maintainabilityWhile not directly related to the PR objective, I noticed that this file is quite long (1639 lines) and contains numerous methods, some of which are quite complex. This can make the code harder to maintain and understand.
Consider refactoring this file by splitting it into smaller, more focused modules. For example, you could separate the GitHub-specific operations, Jira integrations, and container build processes into their own modules.
As an example of a method that might benefit from refactoring, consider the
check_if_can_be_mergedmethod (around line 1300). It's quite long and handles multiple responsibilities. You could potentially break it down into smaller, more focused methods, each handling a specific aspect of the merge check.This refactoring would improve code readability, maintainability, and make it easier to test individual components of the system.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (5)
- Dockerfile (2 hunks)
- entrypoint.sh (1 hunks)
- pyproject.toml (1 hunks)
- tox.ini (1 hunks)
- webhook_server_container/libs/github_api.py (2 hunks)
🧰 Additional context used
🔇 Additional comments (10)
tox.ini (2)
13-15: LGTM! Transition frompoetrytouvlooks good.The changes align with the PR objective to use
uvinstead ofpoetry. Theallowlist_externalsconfiguration is correctly added to allow the use of the externaluvcommand.To ensure the smooth transition, please verify that
uvis properly installed and configured in your CI/CD pipeline. You can add a step in your CI workflow to check theuvinstallation:
11-15: Verify dependency management withuvThe
depsline has been removed from the[testenv:pytest]section. With the transition touv, ensure that all required dependencies are properly managed, possibly through apyproject.tomlfile or another mechanism supported byuv.To confirm that all necessary dependencies are available, you can add a step in your CI pipeline to list installed packages:
Also, verify that a
pyproject.tomlfile exists and contains the necessary dependency information:entrypoint.sh (1)
5-5: LGTM! Verify the Python environment setup.The removal of
poetry runfromSERVER_RUN_CMDaligns with the PR objective of transitioning from Poetry to uv. This change suggests that the Python environment is now managed differently.To ensure the environment is correctly set up, please run the following script:
pyproject.toml (5)
19-53: Project metadata and dependencies look good, but please clarify the version jump.The transition to Hatch and the updated project metadata look good. The dependencies are well-defined with version specifications. However, there's a significant version jump from 0.0.0 to 1.0.68.
Could you please clarify the reasoning behind this major version change? It would be helpful to understand if this represents a significant milestone or if it's aligning with an existing versioning scheme.
55-56: Hatch build configuration looks good, verify package name.The Hatch build configuration for the wheel target is correctly set up.
Please confirm that "webhook_server_container" is indeed the correct package name for your project. If it's not, update it to match your project's main package name.
58-62: Project URLs are correctly updated and maintained.The project URLs have been successfully migrated to the new
[project.urls]format while maintaining the same content. This change is consistent with the transition from Poetry to Hatch.
67-69: Build system configuration correctly updated for Hatch.The build system configuration has been successfully updated to use Hatch. The use of "hatchling" as the build backend is correct and consistent with Hatch-based projects.
19-69: Overall, the transition to Hatch is well-implemented.The changes in this file successfully transition the project from Poetry to Hatch. The project metadata, dependencies, build configuration, and other sections have been appropriately updated. The new structure is consistent with Hatch-based projects and should provide a solid foundation for your development workflow.
A few points to address:
- Clarify the significant version jump from 0.0.0 to 1.0.68.
- Verify that "webhook_server_container" is the correct package name.
- Consider adding more development tools to the dev-dependencies.
Once these points are addressed, the configuration should be ready for use.
Dockerfile (2)
30-33: AddingUSER_CARGO_DIRto PATHThe addition of
USER_CARGO_DIRand updating thePATHvariable ensures that executables installed via Cargo are accessible. This is appropriate for theuvinstallation.
66-66: Updating COPY command to includeuv.lockIncluding
uv.lockin theCOPYcommand ensures that dependencies are correctly installed usinguv. This change aligns with the transition frompoetrytouv.
|
/retest tox |
|
/retest python-module-install |
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Outside diff range and nitpick comments (4)
entrypoint.sh (1)
10-11: LGTM! Consider using a loop for multiple script executions.The changes from 'poetry run python' to 'uv run' for executing Python scripts are correct and align with the PR objective. However, to improve maintainability and reduce repetition, consider using a loop to execute multiple scripts.
Here's a suggested refactoring to use a loop:
-uv run webhook_server_container/utils/github_repository_settings.py -uv run webhook_server_container/utils/webhook.py +for script in github_repository_settings.py webhook.py; do + uv run webhook_server_container/utils/${script} +doneThis approach makes it easier to add or remove scripts in the future without modifying the loop structure.
.release-it.json (1)
20-20: LGTM! Consider minor formatting improvement.The change to
pushArgsis correct and maintains the same functionality. However, for consistency with JSON formatting conventions, consider using a multi-line array format for better readability:- "pushArgs": ["--follow-tags"], + "pushArgs": [ + "--follow-tags" + ],This format is more scalable if additional arguments need to be added in the future.
webhook_server_container/libs/github_api.py (2)
Line range hint
1575-1580: Useuvxinstead ofuvfor consistencyIn line 1575, the command uses
uv:rc, out, err = self._run_in_container(command="uv tool install .")For consistency with other commands that utilize
uvx, consider usinguvxhere to maintain uniformity across the codebase.Apply this diff to ensure consistency:
-rc, out, err = self._run_in_container(command="uv tool install .") +rc, out, err = self._run_in_container(command="uvx tool install .")
Line range hint
1697-1707: Remove unnecessary space whenenvis emptyIn the command construction at line 1697:
f"--rm {env if env else ''} --entrypoint bash quay.io/myakove/github-webhook-server:uv -c"If
envis empty, this results in an extra space between--rmand--entrypoint. While this may not affect execution, it can be cleaner to avoid unintended spaces.Apply this diff to refine the string formatting:
-f"--rm {env if env else ''} --entrypoint bash quay.io/myakove/github-webhook-server:uv -c" +f"--rm{f' {env}' if env else ''} --entrypoint bash quay.io/myakove/github-webhook-server:uv -c"This adjustment ensures that there are no extra spaces when
envis not provided.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
⛔ Files ignored due to path filters (2)
poetry.lockis excluded by!**/*.lockuv.lockis excluded by!**/*.lock
📒 Files selected for processing (4)
- .release-it.json (2 hunks)
- VERSION (0 hunks)
- entrypoint.sh (1 hunks)
- webhook_server_container/libs/github_api.py (4 hunks)
💤 Files with no reviewable changes (1)
- VERSION
🧰 Additional context used
🔇 Additional comments (2)
.release-it.json (1)
41-42: Approve changes to @release-it/bumper configuration. Verify project structure impact.The changes to the
@release-it/bumperplugin configuration look good. They indicate a shift from using a separate VERSION file to managing the version in thepyproject.tomlfile, which is a common practice in modern Python projects.Let's verify the impact of this change on the project structure:
This script will help ensure that the project structure has been updated consistently with the new configuration.
webhook_server_container/libs/github_api.py (1)
1125-1127: Confirmuvxusage for Pre-Commit commandThe updated command leverages
uvxto run Pre-Commit checks:cmd = f"uvx {PRE_COMMIT_STR} run --all-files"This change aligns with the new execution method and appears consistent with other updates.
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (5)
Dockerfile (2)
30-30: LGTM! Consider adding a comment for clarity.The addition of
USER_CARGO_DIRand its inclusion in thePATHis appropriate for the transition to uv. This ensures that Rust-based tools are accessible throughout the container.Consider adding a brief comment explaining the purpose of
USER_CARGO_DIR, such as:# Directory for Rust-based tools (e.g., uv) ENV USER_CARGO_DIR="/root/.cargo/bin"Also applies to: 33-33
40-40: LGTM! Consider using multi-line RUN for consistency.The installation of tox using uv is correct and aligns with the transition to uv for dependency management.
For consistency with other multi-line RUN commands in this Dockerfile, consider using a multi-line format:
RUN set -x \ && uv tool install tox --with tox-uvThis format is more consistent with the style used elsewhere in the file and allows for easier addition of related commands in the future if needed.
webhook_server_container/libs/github_api.py (3)
1098-1101: LGTM! Consider adding a comment for clarity.The change from using a direct Python command to
uv runis consistent with the PR objective of replacing poetry with uv. This change should maintain the functionality while adapting to the new tool.Consider adding a brief comment explaining the use of
uv runfor better code readability:-cmd = f"uv run --python {self.tox_python_version} {TOX_STR}" +# Use uv to run tox with the specified Python version +cmd = f"uv run --python {self.tox_python_version} {TOX_STR}"
1575-1575: LGTM! Consider consistency in uv usage.The change to use
uvx pip installis consistent with the PR objective of replacing poetry with uv. This should maintain the functionality while adapting to the new tool.For consistency across the codebase, consider using the same uv command style as in the
_run_toxmethod. If there's no specific reason to useuvxhere, you might want to change it touv run:-rc, out, err = self._run_in_container(command="uvx pip install .") +rc, out, err = self._run_in_container(command="uv run pip install .")If there is a reason for using
uvxinstead ofuv run, it would be helpful to add a comment explaining the difference.
1697-1697: LGTM! Consider adding a comment for clarity.The update to use the
:uvtagged image is consistent with the PR objective of replacing poetry with uv. This ensures that the container used for running commands has the uv tool available.Consider adding a brief comment explaining the use of the
:uvtagged image for better code readability:-f"--rm {env if env else ''} --entrypoint bash quay.io/myakove/github-webhook-server:uv -c" +# Use the uv-enabled image for running commands +f"--rm {env if env else ''} --entrypoint bash quay.io/myakove/github-webhook-server:uv -c"
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (2)
- Dockerfile (2 hunks)
- webhook_server_container/libs/github_api.py (5 hunks)
🧰 Additional context used
🔇 Additional comments (5)
Dockerfile (3)
35-39: Excellent implementation of the uv installer!The use of
curlto download the uv installer script, followed by its execution and removal, is a secure and efficient approach. This implementation correctly addresses the previous review comment and follows Docker best practices.
Line range hint
1-73: Overall, excellent implementation of the transition to uv!The changes in this Dockerfile successfully implement the transition from Poetry to uv as per the PR objectives. Key points:
- The addition of
USER_CARGO_DIRand its inclusion inPATHensures proper setup for Rust-based tools.- The uv installer is downloaded and executed securely, following best practices.
- Tox is installed using uv, aligning with the new dependency management approach.
- The COPY command has been updated to include
uv.lock, reflecting the change in dependency management.These changes collectively achieve the goal of replacing Poetry with uv in the project's container setup. The implementation is thorough and considers important aspects such as security and consistency with existing practices.
To fully complete the transition, ensure that all references to Poetry have been removed from other parts of the project, and that the
uv.lockfile is being generated and maintained correctly in your development workflow.
67-67: LGTM! Verify uv.lock generation.The update to include
uv.lockinstead ofpoetry.lockin the COPY command is correct and aligns with the transition to uv for dependency management.To ensure the
uv.lockfile is being generated correctly, please run the following verification script:This script will confirm the presence of
uv.lockand check for any remaining references topoetry.lockthat might need updating.✅ Verification successful
Verified! The
uv.lockfile exists and is correctly configured, and there are no remaining references topoetry.lockin the project.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Verify the existence and content of uv.lock file if [ -f "uv.lock" ]; then echo "uv.lock file exists." echo "First few lines of uv.lock:" head -n 5 uv.lock else echo "Error: uv.lock file not found." exit 1 fi # Check if there are any references to poetry.lock remaining in the project if grep -r "poetry.lock" .; then echo "Warning: Found references to poetry.lock in the project. Please review and update these." fiLength of output: 347
webhook_server_container/libs/github_api.py (2)
Line range hint
1-1897: Overall, the changes look good with some minor suggestions for improvement.The modifications to replace poetry with uv are consistently implemented across the file. The core functionality of the methods remains intact while adapting to the new tool. Here's a summary of the changes and suggestions:
- In
_run_tox,uv runis used to execute tox.- In
_run_pre_commitand_run_install_python_module,uvxis used instead ofuv run.- The base container image has been updated to include the
:uvtag.Consider addressing the following points:
- Clarify the reason for using
uvxin some methods anduv runin others.- Add comments to explain the use of uv commands and the uv-enabled container image.
- Ensure consistency in uv usage across the file, or document the reasons for any differences.
These changes have successfully transitioned the project from poetry to uv while maintaining the existing functionality.
1125-1125: LGTM! Clarification needed onuvxusage.The change to use
uvxfor running pre-commit is consistent with the PR objective of replacing poetry with uv. This should maintain the functionality while adapting to the new tool.Could you clarify why
uvxis used here instead ofuv runas in the_run_toxmethod? Is there a specific reason for this difference?To verify the consistency of
uvxusage, let's check other occurrences in the file:✅ Verification successful
LGTM!
uvxis consistently used across the file.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
rg "uvx" webhook_server_container/libs/github_api.pyLength of output: 326
|
/wip |
There was a problem hiding this comment.
Actionable comments posted: 3
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (3)
- Dockerfile (2 hunks)
- entrypoint.sh (1 hunks)
- pyproject.toml (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
- Dockerfile
- entrypoint.sh
🧰 Additional context used
🔇 Additional comments (2)
pyproject.toml (2)
58-62: LGTM! URLs updated correctly.The project URLs have been correctly updated to use the new
[project.urls]format, which aligns with the transition to the new build system. The provided URLs seem appropriate for the project.
55-56: LGTM! Please verify the package name.The Hatch build configuration looks correct. However, please verify that 'webhook_server_container' is the correct package name for your project.
Run the following script to check the project structure and ensure the package name is correct:
✅ Verification successful
Verified the package name. 'webhook_server_container' is a valid Python package.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check project structure echo "Project structure:" tree -L 2 -d echo "\nPython files in root directory:" find . -maxdepth 1 -name "*.py" echo "\nSetup files:" find . -maxdepth 1 -name "setup.py" -o -name "setup.cfg"Length of output: 353
Script:
#!/bin/bash # List contents of 'webhook_server_container' to verify it is a Python package echo "Listing contents of 'webhook_server_container':" ls -R webhook_server_container echo "\nChecking for '__init__.py' files to confirm it's a Python package:" find webhook_server_container -type f -name "__init__.py"Length of output: 848
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (3)
Dockerfile (3)
Line range hint
4-28: LGTM! Consider using specific package versions for reproducibility.The consolidation of package installations into a single RUN command is a good practice, reducing the number of layers in the Docker image. The inclusion of multiple Python versions provides flexibility for development and testing.
Consider specifying versions for critical packages to ensure reproducibility. For example:
- && dnf -y install python3.8 \ + && dnf -y install python3.8-3.8.x \Replace 'x' with the specific minor version you want to use.
29-30: LGTM! Consider adding a comment for clarity.The introduction of
UV_INSTALL_DIRand the update toPATHare appropriate for the shift towards using 'uv' for dependency management.Consider adding a comment to explain the purpose of these environment variables:
+# Set up environment for uv package manager ENV UV_INSTALL_DIR="/root/.local" ENV PATH="$PATH:$USER_BIN_DIR"
Line range hint
54-67: LGTM! Consider using a loop for more concise installation.The installation of tox for each Python version ensures compatibility across different environments, which is excellent.
To make the installation process more concise and easier to maintain, consider using a loop:
-RUN python3.8 -m ensurepip \ - && python3.9 -m ensurepip \ - && python3.10 -m ensurepip \ - && python3.11 -m ensurepip \ - && python3.12 -m ensurepip \ - && python3.8 -m pip install tox \ - && python3.9 -m pip install tox \ - && python3.10 -m pip install tox \ - && python3.11 -m pip install tox \ - && python3.12 -m pip install tox +RUN for version in 3.8 3.9 3.10 3.11 3.12; do \ + python$version -m ensurepip && \ + python$version -m pip install tox; \ + doneThis change reduces repetition and makes it easier to add or remove Python versions in the future.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- Dockerfile (3 hunks)
🧰 Additional context used
🔇 Additional comments (2)
Dockerfile (2)
40-43: Great job implementing the suggested change!The use of
curlto download the uv installer script, followed by its execution and removal, is an excellent implementation of Docker best practices. This approach ensures proper caching and allows for better control over the download process.
68-68: LGTM! Verify uv.lock file existence and contents.The change from
poetry.locktouv.lockcorrectly reflects the transition to using uv for dependency management.To ensure the uv.lock file is present and contains the expected dependencies, run the following script:
This script will verify the existence of the uv.lock file, display its first few lines, and check if pyproject.toml contains uv configuration.
✅ Verification successful
Verified:
uv.lockfile exists and is correctly referencedThe
uv.lockfile is present andpyproject.tomlcontains the necessary[tool.uv]configuration, confirming the transition to using uv for dependency management.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the existence and contents of uv.lock file # Test: Check if uv.lock exists if [ -f uv.lock ]; then echo "uv.lock file exists." # Display the first few lines of uv.lock to verify its contents head -n 10 uv.lock else echo "Error: uv.lock file not found." exit 1 fi # Test: Check if pyproject.toml references uv if grep -q "\[tool.uv\]" pyproject.toml; then echo "pyproject.toml contains uv configuration." else echo "Warning: pyproject.toml does not contain uv configuration." fiLength of output: 468
|
/wip cancel |
|
/verified |
|
New container for quay.io/myakove/github-webhook-server:latest published |
* chore(deps): update poetry-deps (#415) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * enable to run tox with specific python version * [pre-commit.ci] pre-commit autoupdate (#416) updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.3.7](astral-sh/ruff-pre-commit@v0.3.5...v0.3.7) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.28 * chore(deps): update poetry-deps (#417) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * welcome msg: add not supported retest in repository do not have any * poetry update * chore(deps): update poetry-deps (#419) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#420) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.29 * chore(deps): update poetry-deps (#421) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#422) updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.7 → v0.4.1](astral-sh/ruff-pre-commit@v0.3.7...v0.4.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * do not block merge if PR merked as mergable by github * User can set extra required labels to set PR as ca be merged (#424) * Release 1.0.30 * dockerfile add * Release 1.0.31 * chore(deps): update poetry-deps (#426) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * can-be-mrged: check if pr mergeable_state is clean * can-be-mrged: check if pr mergeable_state is clean * can-be-mrged: remove check if pr mergeable_state is clean * chore(deps): update poetry-deps (#430) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Fix reviewers per folders * chore(deps): update poetry-deps (#433) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#432) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.1 → v0.4.2](astral-sh/ruff-pre-commit@v0.4.1...v0.4.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Support create jira issues to track PR lifecycle (#428) * Support create jira issues to track PR lifecycle * Add color to Jira label * Add logs for jira actions * PR lifecycle in jira * Open story under epic if provided * Fix duplicate log filter * Update readme * jira: add repo name to title * Release 1.0.32 * parent_commiter should be commiter of last commit * chore(deps): update poetry-deps (#435) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency pyhelper-utils to ^0.0.14 (#434) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.33 * chore(deps): update poetry-deps (#437) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * add last_commiter var * set jira assignee only if user in jira mapping * chore(deps): update dependency pyhelper-utils to ^0.0.15 (#436) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Meni Yakove <441263+myakove@users.noreply.github.com> * Fix return in init * Release 1.0.34 * chore(deps): update poetry-deps (#438) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * set labels on private repos * set labels on private repos * set labels on private repos * Release 1.0.35 * check_if_can_be_merged: check only required runs (#439) * [pre-commit.ci] pre-commit autoupdate (#441) updates: - [github.com/Yelp/detect-secrets: v1.4.0 → v1.5.0](Yelp/detect-secrets@v1.4.0...v1.5.0) - [github.com/astral-sh/ruff-pre-commit: v0.4.2 → v0.4.3](astral-sh/ruff-pre-commit@v0.4.2...v0.4.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.36 * Fix fstring * Release 1.0.37 * chore(deps): update poetry-deps (#442) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#443) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](astral-sh/ruff-pre-commit@v0.4.3...v0.4.4) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.38 * fix push to pypi * poetry update * chore(deps): update dependency pyhelper-utils to ^0.0.17 (#444) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.39 * pypi: save dist dir as arg * Release 1.0.40 * chore(deps): update dependency pyhelper-utils to ^0.0.18 (#445) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix when no jira issue label * chore(deps): update dependency requests to v2.32.0 (#446) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency requests to v2.32.1 (#447) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.41 * set self.all_required_status_checks to [] in init * chore(deps): update dependency requests to v2.32.2 (#449) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency pyhelper-utils to ^0.0.19 (#448) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#450) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.42 * chore(deps): update poetry-deps (#452) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency pyhelper-utils to ^0.0.20 (#451) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.43 * chore(deps): update poetry-deps (#454) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency pyhelper-utils to ^0.0.21 (#453) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.44 * [pre-commit.ci] pre-commit autoupdate (#455) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.4 → v0.4.5](astral-sh/ruff-pre-commit@v0.4.4...v0.4.5) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.45 * chore(deps): update poetry-deps (#457) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * update renovate.json * chore(deps): update poetry-deps (#458) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#459) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#460) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * do not comment when unsuported label passed from the user * push container: push from main branch if pull request was merged * chore(deps): update poetry-deps (#461) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * build container: checkout the right branch if PR is merged (#462) * build container: checkout the right branch if PR is merged * no-cache for merged PRs * Use uwsgi to run the app (#464) * Use uwsgi to run the app * Use uwsgi to run the app * Use uwsgi to run the app * Use uwsgi to run the app * Use uwsgi to run the app * [pre-commit.ci] pre-commit autoupdate (#466) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.5 → v0.4.7](astral-sh/ruff-pre-commit@v0.4.5...v0.4.7) - [github.com/gitleaks/gitleaks: v8.18.2 → v8.18.3](gitleaks/gitleaks@v8.18.2...v8.18.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#467) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.46 * Fix upload to pypi * Fix upload to pypi * Fix upload to pypi * Release 1.0.47 * remove unused function skip_repo * Tox add unused-code check * remove commented lines * Release 1.0.48 * [pre-commit.ci] pre-commit autoupdate (#468) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.7 → v0.4.8](astral-sh/ruff-pre-commit@v0.4.7...v0.4.8) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.49 * Fix container release push * chore(deps): update poetry-deps (#469) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update poetry * update renovate file * chore(deps): update poetry-deps (#471) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Meni Yakove <441263+myakove@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#472) updates: - [github.com/PyCQA/flake8: 7.0.0 → 7.1.0](PyCQA/flake8@7.0.0...7.1.0) - [github.com/astral-sh/ruff-pre-commit: v0.4.8 → v0.4.9](astral-sh/ruff-pre-commit@v0.4.8...v0.4.9) - [github.com/gitleaks/gitleaks: v8.18.3 → v8.18.4](gitleaks/gitleaks@v8.18.3...v8.18.4) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#473) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * log success when test run success (#474) * Release 1.0.50 * chore(deps): update poetry-deps (#476) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#477) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * delete pr tag on merge/close of a pr (#478) * delete pr tag on merge/close of a pr * updates based on review comments * fixing some commands * determine registry url from container_repository value * address review comment * update based on comments received * remove verify_stderr * updates * [pre-commit.ci] pre-commit autoupdate (#479) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.9 → v0.4.10](astral-sh/ruff-pre-commit@v0.4.9...v0.4.10) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.51 * remove sonarcload workflow * Move to using FastAPI (#480) * Move to using FastAPI * update post function * remove label module * add missing host and port * Fix request type * remove uneeded code * Fix logger calls --------- Co-authored-by: rnetser <rnetser@redhat.com> * delete_remote_tag_for_merged_or_closed_pr: run only when repo have container * Fix delete pr cintainer tag when merged/closed * Fix delete pr container tag when merged/closed * Release 1.0.52 * support log file * add some typing, fix delete tag * chore(deps): update poetry-deps (#482) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.53 * Fix delete tag * create webhhok: remove duplicate log * [pre-commit.ci] pre-commit autoupdate (#483) updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.10 → v0.5.0](astral-sh/ruff-pre-commit@v0.4.10...v0.5.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Meni Yakove <441263+myakove@users.noreply.github.com> * Add more typing * Add future in branch protection (#484) * Use future in branch protection * fix arg * fix arg * unused * unused remove * update sleep * chore(deps): update poetry-deps (#488) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.54 * Add Typing (#486) * Add typing * Add typing * fix type * remove DockerHub * ad mypy * update return type * update return type * More typing * More typing * More typing * More typing * More typing * update return type * update return type * More typing * More typing * More typing * Remove can be merged lable when check failed * Fix call check_run process * improve check if can be merged * improve process pull request speed * add pr number to log when check run reset to queued on startup * pass log to get_future_results * Fix delete tag for merged PR * Set log warn when set check run to queued * update poetry * Fix add reviewers * Fix add reviewers * fix release for container * fix release for container * fix release for container --------- Co-authored-by: Meni Yakove <myakove@gmail.com> * Release 1.0.55 * move process to function (#490) * move process to function * improve can_be_mrged calls * chore(deps): update poetry-deps (#489) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#492) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.0 → v0.5.1](astral-sh/ruff-pre-commit@v0.5.0...v0.5.1) - [github.com/pre-commit/mirrors-mypy: v1.10.0 → v1.10.1](pre-commit/mirrors-mypy@v1.10.0...v1.10.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Add comment when reviewer failed to be added (#493) * Add command arguments to the build-and-push-container (#495) * Add command arguments to the build-and-push-container * Podman fix * chore(deps): update poetry-deps (#496) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#499) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.1 → v0.5.2](astral-sh/ruff-pre-commit@v0.5.1...v0.5.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Set approve label only if reviewer is part of approvers (#497) * Set approve label only if reviewer is part of approvers * Update the readme * Add missing typing * Fix missing {} in fstring * Fix missing {} in fstring * fix can be merged check * Add support to pass log level * Fix where is no last commiter in commit (#501) * chore(deps): update poetry-deps (#500) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.56 * chore(deps): update poetry-deps (#505) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#506) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.2 → v0.5.4](astral-sh/ruff-pre-commit@v0.5.2...v0.5.4) - [github.com/pre-commit/mirrors-mypy: v1.10.1 → v1.11.0](pre-commit/mirrors-mypy@v1.10.1...v1.11.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * ProcessGithubWehook: do not use @ignore_exceptions (#503) * ProcessGithubWehook: do not use @ignore_exceptions * fail if any exeption in from process() * remove @ignore_exceptions from all files * fix some typing * Improve logging (#507) * Improve logging * Add color to repository name in the log * Add color to repository name in the log * convert some logger info to debug * convert some logger info to debug * Function to get logger * Function to get logger * More logging debug * log api rate only if below minimum * More debug logs * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * Use string-color for log_prefix * always read config when creating logger to support switch levels without restart * Try to fix log console colors * Update example config * set wip label based on title (#509) * wip label - add missing f-string (#511) * Release 1.0.57 * chore(deps): update poetry-deps (#513) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#514) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.58 * chore(deps): update poetry-deps (#515) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update tox configuration to run tests based on pull request parent branch * Release 1.0.59 * chore(deps): update poetry-deps (#516) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Fix remove lgtm by on pr sync * Set log file zise to 10mb * [pre-commit.ci] pre-commit autoupdate (#517) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.4 → v0.5.5](astral-sh/ruff-pre-commit@v0.5.4...v0.5.5) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Extract some code to function (#518) * Extract some code to function * Improve error msg of build and push container command * No limit log file size * Log file zise set to 50MB * fix check if user command supported * fix check if user command supported * Rename _process_verified to more clrean name * log file, no size limi * Improve no ready to merged output * Use one logger for all * Fix BUILD_AND_PUSH_CONTAINER_STR user command * Fix BUILD_AND_PUSH_CONTAINER_STR user command * Fix BUILD_AND_PUSH_CONTAINER_STR user command * chore(deps): update poetry-deps (#520) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#522) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#523) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Extract to functions, run in parallel (#524) * Extract to functions, run in parallel * Extract to functions, run in parallel * Extract to functions, run in parallel * Remove time loggers * [pre-commit.ci] pre-commit autoupdate (#526) updates: - [github.com/PyCQA/flake8: 7.1.0 → 7.1.1](PyCQA/flake8@7.1.0...7.1.1) - [github.com/astral-sh/ruff-pre-commit: v0.5.5 → v0.5.6](astral-sh/ruff-pre-commit@v0.5.5...v0.5.6) - [github.com/pre-commit/mirrors-mypy: v1.11.0 → v1.11.1](pre-commit/mirrors-mypy@v1.11.0...v1.11.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#527) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Fix mypy pre-commit types deps issues * chore(deps): update poetry-deps (#528) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Remove unused code (#529) * Release 1.0.60 * chore(deps): update poetry-deps (#531) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#532) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.5.7](astral-sh/ruff-pre-commit@v0.5.6...v0.5.7) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#533) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#534) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.61 * chore(deps): update poetry-deps (#535) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.62 * chore(deps): update poetry-deps (#536) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#538) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#537) updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.7 → v0.6.1](astral-sh/ruff-pre-commit@v0.5.7...v0.6.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * run rm -rf /run/containers/storage /run/libpod on server start * chore(deps): update poetry-deps (#539) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * add back k3d to the container * Add docker to the container (#540) * chore(deps): update poetry-deps (#542) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#543) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#544) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#545) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.1 → v0.6.2](astral-sh/ruff-pre-commit@v0.6.1...v0.6.2) - [github.com/pre-commit/mirrors-mypy: v1.11.1 → v1.11.2](pre-commit/mirrors-mypy@v1.11.1...v1.11.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.63 * chore(deps): update poetry-deps (#546) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.64 * chore(deps): update poetry-deps (#547) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.65 * [pre-commit.ci] pre-commit autoupdate (#548) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.2 → v0.6.3](astral-sh/ruff-pre-commit@v0.6.2...v0.6.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#549) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#550) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#551) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#552) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.3 → v0.6.4](astral-sh/ruff-pre-commit@v0.6.3...v0.6.4) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#553) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#554) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#556) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#557) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Only approvers should be able to set `hold` lable on PR (#558) * Release 1.0.66 * chore(deps): update poetry-deps (#560) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#561) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.4 → v0.6.5](astral-sh/ruff-pre-commit@v0.6.4...v0.6.5) - [github.com/gitleaks/gitleaks: v8.18.4 → v8.19.2](gitleaks/gitleaks@v8.18.4...v8.19.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#562) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Release 1.0.67 * chore(deps): update poetry-deps (#563) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * update poetry * chore(deps): update poetry-deps (#564) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * feat(github_api): refactor size label calculation (#565) * chore(deps): update poetry-deps (#567) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#569) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#568) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.5 → v0.6.7](astral-sh/ruff-pre-commit@v0.6.5...v0.6.7) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Add simple test for `get_size` (#570) * Add simple test for `get_size` * Add simple test for `get_size` * fix type * Fix config path for test when running inside container * revert config path for tests * add config.yaml for tests * fix typo * chore(deps): update poetry-deps (#572) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#573) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * remove k3d from dockerfile * Set PR as auto-merge when commiter is part of auth-merged users (#574) * fix pre-commit mypy exlude regex * [pre-commit.ci] pre-commit autoupdate (#576) updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.7 → v0.6.8](astral-sh/ruff-pre-commit@v0.6.7...v0.6.8) - [github.com/gitleaks/gitleaks: v8.19.2 → v8.19.3](gitleaks/gitleaks@v8.19.2...v8.19.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Release 1.0.68 * chore(deps): update poetry-deps (#577) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update poetry-deps (#578) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pre-commit.ci] pre-commit autoupdate (#581) updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.6.0...v5.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.6.8 → v0.6.9](astral-sh/ruff-pre-commit@v0.6.8...v0.6.9) - [github.com/gitleaks/gitleaks: v8.19.3 → v8.20.1](gitleaks/gitleaks@v8.19.3...v8.20.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * Run check if can be merged when hold label is add/removed (#582) * check if pr is already set to auto merge before enable (#586) * check if pr is already set to automerge before enable * do not raise if label not exists in remove label * set_pull_request_automerge: do not fail on exception * use `uv` instead of `poetry` (#579) * use `uv` only to manage project install and exeute * Fix dockerfile PATH * Fix dockerfile $PATH * tox: use uv * remove poetry.lock * Add YAML $schema file * Add YAML $schema file to example config --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Debarati Basu-Nag <dbasunag@redhat.com> Co-authored-by: rnetser <rnetser@redhat.com> Co-authored-by: Jenia Peimer <86722603+jpeimer@users.noreply.github.com>
Summary by CodeRabbit
New Features
Improvements
uv.Bug Fixes
Chores