-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathpath-filters.yml
More file actions
93 lines (83 loc) 路 2.09 KB
/
Copy pathpath-filters.yml
File metadata and controls
93 lines (83 loc) 路 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Single source of truth for "what changed files trigger what workflow."
#
# Consumed by dorny/paths-filter in each required-check workflow's `changes` job.
# Each key maps to a workflow basename (or a gated job within one); values are picomatch globs.
#
# Editing this file re-triggers every workflow on the next PR (the file is
# listed in every filter), which is the desired safety property when the
# triggering rules themselves change.
lint:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".cargo/config.toml"
- "**/clippy.toml"
- "deny.toml"
- "supply-chain/**"
- ".github/workflows/lint.yml"
- ".github/path-filters.yml"
hadolint:
- "docker/Dockerfile"
- ".github/workflows/lint.yml"
- ".github/path-filters.yml"
shellcheck:
- "**/*.sh"
- ".github/workflows/lint.yml"
- ".github/path-filters.yml"
semver:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/workflows/pr-gate.yml"
- ".github/path-filters.yml"
unit_tests:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".config/nextest.toml"
- ".github/workflows/tests-unit.yml"
- ".github/path-filters.yml"
test_crates:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".cargo/config.toml"
- "**/clippy.toml"
- ".github/workflows/test-crates.yml"
- ".github/path-filters.yml"
test_docker:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- "docker/Dockerfile"
- "docker/entrypoint.sh"
- "docker/**/*.toml"
- "zebrad/tests/common/configs/**"
- ".github/workflows/test-docker.yml"
- ".github/path-filters.yml"
book:
- "book/**"
- "katex-header.html"
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".cargo/config.toml"
- "**/clippy.toml"
- ".github/workflows/book.yml"
- ".github/path-filters.yml"
coverage:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".config/nextest.toml"
- "codecov.yml"
- ".github/workflows/coverage.yml"
- ".github/path-filters.yml"
docs_check:
- "**/*.md"
- "book/**"
- ".lychee.toml"
- ".codespellrc"
- ".trunk/configs/.markdownlint.yaml"
- ".github/workflows/docs-check.yml"
- ".github/path-filters.yml"