Skip to content

Commit c23a1ce

Browse files
committed
feat(ci): added dependabot config
1 parent bfc2193 commit c23a1ce

File tree

3 files changed

+39
-18
lines changed

3 files changed

+39
-18
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,6 @@ assignees: ""
1313

1414
**Fixes** (issue)
1515

16-
**Type of change**
17-
18-
<!-- Please update the title of your PR to match the type of change. The title will be used for the commit message and the changelog. -->
19-
<!---->
20-
<!-- The `(scope)` is optional and refers to the part of the codebase you're changing (e.g., `feat(search)`, `fix(ci)`). -->
21-
22-
<!-- - [ ] `fix`: A bug fix -->
23-
<!-- - [ ] `feat`: A new feature -->
24-
<!-- - [ ] `feat!`: A breaking change -->
25-
<!-- - [ ] `docs`: Documentation only changes -->
26-
<!-- - [ ] `chore`: Changes to the build process or auxiliary tools -->
27-
<!-- - [ ] `refactor`: A code change that neither fixes a bug nor adds a feature -->
28-
<!-- - [ ] `perf`: A code change that improves performance -->
29-
<!-- - [ ] `test`: Adding missing tests or correcting existing tests -->
30-
<!-- - [ ] `style`: Changes that do not affect the meaning of the code -->
31-
<!-- - [ ] `ci`: Changes to our CI configuration files and scripts -->
32-
<!-- - [ ] `revert`: Reverts a previous commit -->
33-
3416
**How Has This Been Tested?**
3517

3618
<!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration. -->

.github/dependabot.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 2
2+
updates:
3+
# Rust dependencies (Cargo)
4+
- package-ecosystem: "cargo"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
commit-message:
9+
prefix: "chore(deps)"
10+
labels:
11+
- "dependencies"
12+
- "rust"
13+
14+
# Python dependencies (pip/pyproject.toml)
15+
- package-ecosystem: "pip"
16+
directory: "/"
17+
schedule:
18+
interval: "weekly"
19+
commit-message:
20+
prefix: "chore(deps)"
21+
labels:
22+
- "dependencies"
23+
- "python"
24+
25+
# GitHub Actions
26+
- package-ecosystem: "github-actions"
27+
directory: "/"
28+
schedule:
29+
interval: "weekly"
30+
commit-message:
31+
prefix: "chore(deps)"
32+
labels:
33+
- "dependencies"
34+
- "ci"

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ classifiers = [
3131
[project.urls]
3232
Homepage = "https://github.com/PyDataBlog/simstring_rs"
3333
Repository = "https://github.com/PyDataBlog/simstring_rs"
34+
35+
[tool.coverage.run]
36+
omit = [
37+
"tests/**",
38+
]

0 commit comments

Comments
 (0)