forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
49 lines (46 loc) · 1.12 KB
/
dependabot.yml
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
version: 2
updates:
# GitHub Actions
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: monthly
commit-message:
prefix: ci
labels: [skip-changelog]
reviewers: [stinodego]
# Rust Polars
- package-ecosystem: cargo
directory: '/'
schedule:
interval: monthly
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']
commit-message:
prefix: build(rust)
prefix-development: chore(rust)
labels: [skip-changelog]
# Python Polars
- package-ecosystem: pip
directory: py-polars
schedule:
interval: monthly
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']
commit-message:
prefix: chore(python)
labels: [skip-changelog]
reviewers: [stinodego]
- package-ecosystem: cargo
directory: py-polars
schedule:
interval: monthly
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch']
commit-message:
prefix: build(python)
prefix-development: chore(python)
labels: [skip-changelog]