Skip to content
Merged
Changes from 2 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
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,55 @@ version: 2
updates:
- package-ecosystem: "maven"
target-branch: "master"
labels:
- master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need to add all labels, so please also add here dependencies and java

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we also need manually add new label master to https://github.com/apache/maven-surefire/labels
dependabot will not create it

directory: "/"
schedule:
interval: "daily"
ignore:
# Ignore Maven Core updates
- dependency-name: "org.apache.maven:*"
# to remove when depending on core 4.x
- dependency-name: "org.slf4j:*"
versions: [ ">2.0"]
- dependency-name: "junit:junit"
# to remove when depending on core 4.x
- dependency-name: "org.apache.maven.resolver:*"
versions: [ ">2.0"]
- dependency-name: "org.mockito:*"
versions: [ ">5.0"]
- package-ecosystem: "github-actions"
target-branch: "master"
labels:
- master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add dependencies and github_actions

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.
sounds weird to have dependencies and github_actions as the same time though.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is default, but when we override default is not used

commit-message:
prefix: "[Master]"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "maven"
target-branch: "surefire-3.5.x"
labels:
- "[3.5.x]"
directory: "/"
schedule:
interval: "daily"
ignore:
# Ignore Maven Core updates
- dependency-name: "org.apache.maven:*"
- dependency-name: "org.slf4j:*"
versions: [ ">2.0"]
- dependency-name: "junit:junit"
# TODO this already needs some update to be on 1.9.x
- dependency-name: "org.apache.maven.resolver:*"
versions: [ ">2.0"]
- dependency-name: "org.mockito:*"
versions: [ ">5.0"]

- package-ecosystem: "github-actions"
target-branch: "surefire-3.5.x"
labels:
- "[3.5.x]"
directory: "/"
schedule:
interval: "daily"
Loading