From 4c31b3e847cb65e155521d43846905766a6086ec Mon Sep 17 00:00:00 2001 From: Enrico Martelli Date: Thu, 18 Jun 2026 23:27:31 +0200 Subject: [PATCH 1/2] Disable coderabbit on bump prs Just treat them as any other prs from dependabot or similar --- .coderabbit.yaml | 5 +++++ .github/workflows/bump.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..210a45dd --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,5 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json +reviews: + auto_review: + ignore_title_keywords: + - "[bump]" diff --git a/.github/workflows/bump.yaml b/.github/workflows/bump.yaml index ad2424c3..8a99e19b 100644 --- a/.github/workflows/bump.yaml +++ b/.github/workflows/bump.yaml @@ -18,6 +18,6 @@ jobs: - name: Update dependencies uses: wader/bump/action@master with: - title_template: Update {{.Name}} to v{{.Latest}} + title_template: [bump] Update {{.Name}} to v{{.Latest}} env: GITHUB_TOKEN: ${{ secrets.BUMP_TOKEN }} From 1768aead506467d99d76008a604a1b6a99ca5665 Mon Sep 17 00:00:00 2001 From: Enrico Martelli Date: Thu, 18 Jun 2026 23:32:31 +0200 Subject: [PATCH 2/2] Add quotes to title_template string Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .github/workflows/bump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bump.yaml b/.github/workflows/bump.yaml index 8a99e19b..a9dead7d 100644 --- a/.github/workflows/bump.yaml +++ b/.github/workflows/bump.yaml @@ -18,6 +18,6 @@ jobs: - name: Update dependencies uses: wader/bump/action@master with: - title_template: [bump] Update {{.Name}} to v{{.Latest}} + title_template: "[bump] Update {{.Name}} to v{{.Latest}}" env: GITHUB_TOKEN: ${{ secrets.BUMP_TOKEN }}