From d58455fe67a5dd666048a385edbe21a89c0f2cbf Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Sat, 21 Feb 2026 05:58:52 -0500 Subject: [PATCH 1/2] ci(workflows): don't run test and lint on release-please branches --- .github/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 374d687..07b1ae7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,5 +1,11 @@ name: CI -on: [push, pull_request] +on: + push: + branches-ignore: + - 'release-please-**' + pull_request: + branches-ignore: + - 'release-please-**' jobs: test: strategy: From 27c9c74ef5c32d672cfd3964e792fcd7de01cedb Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Sat, 21 Feb 2026 06:09:21 -0500 Subject: [PATCH 2/2] ci(workflows): fix all tests/lints running twice --- .github/workflows/ci.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 07b1ae7..77b1bad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,11 +1,8 @@ name: CI on: push: - branches-ignore: - - 'release-please-**' + branches: [main] pull_request: - branches-ignore: - - 'release-please-**' jobs: test: strategy: