File tree Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 23
23
- main
24
24
pull_request :
25
25
paths :
26
- - " .github/workflows/bindings_python_ci.yml"
27
- - " bindings/python/**"
28
- - " crates/iceberg/**"
29
- - " crates/integrations/datafusion/**"
26
+ - ' **' # Include all files and directories in the repository by default.
27
+ - ' !.github/workflows/**' # Exclude all workflow files
28
+ - ' .github/workflows/bindings_python_ci.yml' # except the current file.
29
+ - ' !.github/actions/**' # Exclude custom actions
30
+ - ' bindings/python/**' # Include source codes and its dependencies
31
+ - ' !crates/**'
32
+ - ' crates/iceberg/**'
33
+ - ' crates/integrations/datafusion/**'
34
+ - ' !.github/ISSUE_TEMPLATE/**' # Exclude files and directories that don't impact tests or code like templates, metadata, and documentation.
35
+ - ' !scripts/**'
36
+ - ' !website/**'
37
+ - ' !.asf.yml'
38
+ - ' !.gitattributes'
39
+ - ' !.gitignore'
40
+ - ' !CONTRIBUTING.md'
41
+ - ' !CHANGELOG.md'
42
+ - ' !LICENSE'
43
+ - ' !NOTICE'
44
+ - ' !README.md'
30
45
31
46
concurrency :
32
47
group : ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Original file line number Diff line number Diff line change 22
22
branches :
23
23
- main
24
24
pull_request :
25
- branches :
25
+ paths :
26
26
- ' **' # Include all files and directories in the repository by default.
27
27
- ' !.github/workflows/**' # Exclude all workflow files
28
28
- ' .github/workflows/ci.yml' # except the current file.
You can’t perform that action at this time.
0 commit comments