Skip to content
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

Make dependabot distinguish between minor and patch updates #459

Merged
merged 1 commit into from
Nov 4, 2024
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
21 changes: 19 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
---
version: 2
updates:
# direct dependencies that we want to mention in changelog (no grouping)
- package-ecosystem: pip
directory: /.config/
schedule:
interval: daily
labels:
- dependabot-deps-updates
- minor
allow:
- dependency-name: ansible-core
- dependency-name: ansible-compat
- dependency-name: ansible-creator
- dependency-name: ansible-dev-environment
- dependency-name: ansible-lint
- dependency-name: ansible-navigator
- dependency-name: molecule
- dependency-name: pytest-ansible
- dependency-name: tox-ansible
# indirect dependencies that we do not want to mention in changelog
- package-ecosystem: pip
directory: /.config/
Expand All @@ -9,8 +27,7 @@ updates:
interval: weekly
labels:
- dependabot-deps-updates
# We need to manually decide which ones are to be mentioned.
# - skip-changelog
- skip-changelog
groups:
dependencies:
patterns:
Expand Down