Skip to content

Commit d22ce53

Browse files
authored
Fix determine changes detection of "code" changes (#9038)
Replaces #9035 Fixes #8225 The issue appears to be that `*/**` was used instead of `**/*` which did not match _any_ changed file as desired
1 parent acab5f3 commit d22ce53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
- "!crates/ruff_dev/**"
4949
- "!crates/ruff_shrinking/**"
5050
- scripts/*
51-
- .github/workflows/ci.yaml
5251
- python/**
52+
- .github/workflows/ci.yaml
5353
5454
formatter:
5555
- Cargo.toml
@@ -68,7 +68,7 @@ jobs:
6868
- .github/workflows/ci.yaml
6969
7070
code:
71-
- "*/**"
71+
- "**/*"
7272
- "!**/*.md"
7373
- "!docs/**"
7474
- "!assets/**"

0 commit comments

Comments
 (0)