From 237a4f150836ddfe946c8b28924139f87d5daaed Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 28 Aug 2026 13:48:40 -0600 Subject: [PATCH] don't skip CI if example code changes We test that code in CI now, so we should run it if the code changes (but we can still skip it if only the README.md files change). --- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ce44c12d..2d9b0bd5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,7 +5,7 @@ on: tags: - "v*" paths-ignore: - - "examples/**" + - "examples/**/README.md" - "README.md" - "CONTRIBUTING.md" workflow_dispatch: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4718b96d..4be7148e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -3,7 +3,7 @@ on: pull_request: branches: [main] paths-ignore: - - "examples/**" + - "examples/**/README.md" - "README.md" - "CONTRIBUTING.md" workflow_dispatch: