This repository was archived by the owner on Sep 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +55
-1
lines changed Expand file tree Collapse file tree 3 files changed +55
-1
lines changed Original file line number Diff line number Diff line change 1+ version = 1
2+
3+ exclude_patterns = [
4+ " .github/**" ,
5+ ]
6+
7+ test_patterns = [
8+ " tests/**" ,
9+ " test_*.py"
10+ ]
11+
12+ [[analyzers ]]
13+ name = " test-coverage"
14+ enabled = true
15+
16+ [[analyzers ]]
17+ name = " python"
18+ enabled = true
19+
20+ [analyzers .meta ]
21+ runtime_version = " 3.x.x"
Original file line number Diff line number Diff line change 1+ pull_request_rules :
2+
3+ - name : warn on conflicts
4+ conditions :
5+ - conflict
6+ - -draft # filter-out GH draft PRs
7+ - -label="has conflicts"
8+ actions :
9+ # comment:
10+ # message: This pull request is now in conflict... :(
11+ label :
12+ add : [ "has conflicts" ]
13+
14+ - name : resolved conflicts
15+ conditions :
16+ - -conflict
17+ - label="has conflicts"
18+ - -draft # filter-out GH draft PRs
19+ - -merged # not merged yet
20+ - -closed
21+ actions :
22+ label :
23+ remove : [ "has conflicts" ]
24+
25+ - name : update PR
26+ conditions :
27+ - -conflict
28+ - -draft # filter-out GH draft PRs
29+ - base=master # apply only on master
30+ - -title~=(?i)wip # skip all PR that title contains “WIP” (ignoring case)
31+ - " #approved-reviews-by>=1" # number of review approvals
32+ actions :
33+ update : {}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ recursive-include bpdl *.py
1919include setup.*
2020
2121# Exclude build configs
22- exclude *.yml *.yaml
22+ exclude *.yml *.yaml *.toml
2323# Exclude testing
2424exclude pytest.*
2525
You can’t perform that action at this time.
0 commit comments