Skip to content

Tell Dependabot not to use conventional commits #1942

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
version: 2
updates:
# We only use Dependabot *version* updates for GitHub Actions. Rust dependencies are checked via
# `cargo deny` and manually updated (see https://github.com/GitoxideLabs/gitoxide/issues/144), or
# by Dependabot *security* updates (which don't need the `cargo` ecosystem to be listed here).
# Only GitHub Actions dependencies receive Dependabot *version* updates. Rust dependencies are
# checked via `cargo deny` (https://github.com/GitoxideLabs/gitoxide/issues/144) and updated
# manually or via Dependabot *security* updates (which the restrictions here do not constrain).
- package-ecosystem: cargo
directory: '/'
schedule:
# We include this required key, but it only applies to version updates, which are suppressed.
interval: monthly
# Disable version updates for Rust dependencies. Security updates are still allowed.
open-pull-requests-limit: 0
commit-message:
# Avoid non-"purposeful" prefix due to Dependabot misdetecting style (see `DEVELOPMENT.md`).
prefix: ''
groups:
cargo:
patterns: ['*']
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: weekly
commit-message:
# Avoid non-"purposeful" prefix due to Dependabot misdetecting style (see `DEVELOPMENT.md`).
prefix: ''
groups:
github-actions:
patterns: ['*']
Loading