From e39e9e1c86989759bf01cf4342c95c120e42d930 Mon Sep 17 00:00:00 2001 From: yuanzonghao Date: Sun, 7 Jun 2026 22:27:54 +0800 Subject: [PATCH] chore(ci): disable PR Agent auto-describe and AI title Collaborators' hand-written PR titles and descriptions were being overwritten by the automatic /describe run. Disable auto_describe on the Claude job and set generate_ai_title = false so human-authored metadata is preserved. Manual /describe via PR comment still works. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/pr-agent.yml | 2 +- .pr_agent.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-agent.yml b/.github/workflows/pr-agent.yml index 331d1e1..5ba4cd4 100644 --- a/.github/workflows/pr-agent.yml +++ b/.github/workflows/pr-agent.yml @@ -34,7 +34,7 @@ jobs: config.reasoning_effort: "high" openai.api_base: ${{ secrets.PR_REVIEW_BASE_URL }} github_action_config.auto_review: "true" - github_action_config.auto_describe: "true" + github_action_config.auto_describe: "false" github_action_config.auto_improve: "true" github_action_config.pr_actions: '["opened", "reopened", "ready_for_review", "synchronize"]' pr_reviewer.extra_instructions: | diff --git a/.pr_agent.toml b/.pr_agent.toml index 0e3ee39..a8c20e1 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -19,7 +19,7 @@ require_todo_scan = true persistent_comment = false # two model jobs would otherwise overwrite each other [pr_description] -generate_ai_title = true +generate_ai_title = false publish_labels = true use_bullet_points = true enable_pr_diagram = true