Skip to content

Commit b9e935b

Browse files
committed
Disable workflow runs on markdown changes
1 parent 0c21925 commit b9e935b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/rust.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,22 @@ name: Rust
44
on:
55
push:
66
branches: [ "main" ]
7+
paths:
8+
- 'Cargo.toml'
9+
- 'Cargo.lock'
10+
- 'src/**'
11+
- 'tests/**'
12+
- '.codespellrc'
13+
- '.github/workflows/rust.yml'
714
pull_request:
815
branches: [ "main" ]
16+
paths:
17+
- 'Cargo.toml'
18+
- 'Cargo.lock'
19+
- 'src/**'
20+
- 'tests/**'
21+
- '.codespellrc'
22+
- '.github/workflows/rust.yml'
923

1024
env:
1125
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)