From c61fffa1720999f729e13193ed7cdaf9180661ee Mon Sep 17 00:00:00 2001 From: kamiyaa Date: Tue, 11 Nov 2025 11:40:35 -0500 Subject: [PATCH] feat: update PR title to pass PR title lint ci --- .github/workflows/rust-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 027c661d706..ed1508631ca 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -221,13 +221,13 @@ jobs: if [ -n "$EXISTING_PR" ]; then echo "Updating existing PR #$EXISTING_PR" gh pr edit "$EXISTING_PR" \ - --title "release: agents v${NEW_VERSION}" \ + --title "chore: release agents v${NEW_VERSION}" \ --body "$PR_BODY" echo "Updated PR: $(gh pr view $EXISTING_PR --json url --jq .url)" else echo "Creating new draft PR" gh pr create \ - --title "release: agents v${NEW_VERSION}" \ + --title "chore: release agents v${NEW_VERSION}" \ --body "$PR_BODY" \ --base main \ --head "$BRANCH_NAME" \