Skip to content

Commit ea7e48d

Browse files
authored
don't skip CI if example code changes (#241)
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).
1 parent 0df9615 commit ea7e48d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags:
66
- "v*"
77
paths-ignore:
8-
- "examples/**"
8+
- "examples/**/README.md"
99
- "README.md"
1010
- "CONTRIBUTING.md"
1111
workflow_dispatch:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
branches: [main]
55
paths-ignore:
6-
- "examples/**"
6+
- "examples/**/README.md"
77
- "README.md"
88
- "CONTRIBUTING.md"
99
workflow_dispatch:

0 commit comments

Comments
 (0)