This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch enable-dependabot-for-non-default-branches in repository https://gitbox.apache.org/repos/asf/opennlp.git
commit 95bbfae00fc8e4cdd1242d9dca90c2e6a3a6e647 Author: Richard Zowalla <[email protected]> AuthorDate: Wed Sep 17 19:53:07 2025 +0200 Enable dependabot for non default branches (2.x) --- .github/dependabot.yml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bd23bdd6..c5b15611 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,6 +22,7 @@ updates: interval: weekly time: '04:00' open-pull-requests-limit: 10 + target-branch: "main" ignore: - dependency-name: "com.puppycrawl.tools:*" update-types: [ "version-update:semver-minor", "version-update:semver-patch" ] @@ -31,4 +32,28 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" \ No newline at end of file + interval: "daily" + target-branch: "main" + + - package-ecosystem: maven + directory: "/" + schedule: + interval: weekly + time: '04:00' + open-pull-requests-limit: 10 + target-branch: "opennlp-2.x" + commit-message: + prefix: "[2.x]" + ignore: + - dependency-name: "com.puppycrawl.tools:*" + update-types: [ "version-update:semver-minor", "version-update:semver-patch" ] + - dependency-name: "io.github.classgraph:*" + update-types: [ "version-update:semver-minor" ] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + target-branch: "opennlp-2.x" + commit-message: + prefix: "[2.x]" \ No newline at end of file
