ci: change ci.yaml triggers

Use ignore patterns for triggers and add ignore pattern for
'dev-noci/**' branches
This commit is contained in:
Matt Ehrnschwender
2026-02-01 14:31:55 -05:00
parent f6caf1a822
commit dbc826f641
+14 -14
View File
@@ -2,21 +2,21 @@ name: CI
on:
push:
paths:
- ".github/workflows/*.yaml"
- ".github/workflows/*.yml"
- "Cargo.toml"
- "crates/**"
- "src/**"
- "tests/**"
- "xtask/**"
paths-ignore:
- "docs/**"
- "examples/**"
- "CHANGELOG.md"
- "LICENSE"
- "README.md"
branches-ignore:
- "dev-noci/**"
pull_request:
paths:
- "Cargo.toml"
- "crates/**"
- "src/**"
- "tests/**"
- "xtask/**"
paths-ignore:
- "docs/**"
- "examples/**"
- "CHANGELOG.md"
- "LICENSE"
- "README.md"
env:
CARGO_TERM_COLOR: always