From 670371d0f8a4a5de7be206a9affebf516edc42cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Wed, 25 Mar 2026 13:50:10 +0100 Subject: [PATCH 1/4] chore: update tombi to v0.9.9 and actions/checkout pin --- .github/workflows/toml-checks.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/toml-checks.yaml b/.github/workflows/toml-checks.yaml index 77472335d5..e38eb2a1c3 100644 --- a/.github/workflows/toml-checks.yaml +++ b/.github/workflows/toml-checks.yaml @@ -12,10 +12,10 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - - uses: tombi-toml/setup-tombi@f7cb38e77d9a62bc27a8445bf50e660e9496b893 # v1.0.7 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 + - uses: tombi-toml/setup-tombi@cebfd308ba02edadfcee148b7473536990950c92 # v1.0.8 with: - version: 'v0.7.22' - checksum: '2f96342066b02ac374b2b457c9927264fd086256c1c6ccc817eced8367f1d83c' + version: 'v0.9.9' + checksum: 'b50dbc90ec27591dbaf564b628bd3b3e4ead371a60931bc8ea5f34d7cd1d3607' - name: Validate TOML files run: tombi lint \ No newline at end of file From 3d48351b8637993f092cd882bbf80eb30260c108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Wed, 25 Mar 2026 13:55:50 +0100 Subject: [PATCH 2/4] chore: update Qodo config to v2 --- pr_agent.toml | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/pr_agent.toml b/pr_agent.toml index 69ba454eed..b6047bb6f2 100644 --- a/pr_agent.toml +++ b/pr_agent.toml @@ -1,38 +1,28 @@ [jira] -jira_api_token = "${{ secrets.JIRA_API_TOKEN }}" -jira_base_url = "https://issues.redhat.com" +jira_base_url = "https://redhat.atlassian.net" [github_app] # what should be launched automatically pr_commands = [ - "/review", - "/describe --pr_description.final_update_message=false", - "/improve", + "/agentic_review", + "/agentic_describe --pr_description.final_update_message=false", + "/generate_labels", ] -feedback_on_draft_pr = true -[pr_reviewer] # /review # -persistent_comment = true -require_tests_review = false -require_ticket_analysis_review = true -enable_review_labels_security = true -enable_review_labels_effort = true +[pr_test] +enable=false -[pr_description] # /describe # -enable_pr_diagram = false -publish_labels = true -final_update_message = true -# without this, it can interfere with Sourcery AI -publish_description_as_comment = true -publish_description_as_comment_persistent = true -add_original_user_description = false +[review_agent] +comments_location_policy = "summary" -[pr_code_suggestions] -commitable_code_suggestions = false +[checks] +enable_auto_checks_feedback = "true" +persistent_comment = "true" +final_update_message = "false" [config] ignore_pr_authors = ["renovate", "rhdh-bot", "dependabot"] [rag_arguments] enable_rag=true -rag_repo_list=['redhat-developer/rhdh','redhat-developer/red-hat-developers-documentation-rhdh'] \ No newline at end of file +rag_repo_list=['redhat-developer/rhdh','redhat-developer/red-hat-developers-documentation-rhdh'] From 7131963fe07c7a036ae174359dac2eecc342f9b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Wed, 25 Mar 2026 13:56:42 +0100 Subject: [PATCH 3/4] chore: rename pr_agent.toml to .pr_agent.toml --- pr_agent.toml => .pr_agent.toml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pr_agent.toml => .pr_agent.toml (100%) diff --git a/pr_agent.toml b/.pr_agent.toml similarity index 100% rename from pr_agent.toml rename to .pr_agent.toml From 201f54bef16d50aef05c2936dadcd23a43314c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Wed, 25 Mar 2026 14:10:21 +0100 Subject: [PATCH 4/4] fix: use TOML boolean literals instead of strings --- .pr_agent.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pr_agent.toml b/.pr_agent.toml index b6047bb6f2..c7e55962ee 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -16,9 +16,9 @@ enable=false comments_location_policy = "summary" [checks] -enable_auto_checks_feedback = "true" -persistent_comment = "true" -final_update_message = "false" +enable_auto_checks_feedback = true +persistent_comment = true +final_update_message = false [config] ignore_pr_authors = ["renovate", "rhdh-bot", "dependabot"]