Skip to content

Commit

Permalink
Add dependabot
Browse files Browse the repository at this point in the history
Signed-off-by: James R. Perkins <[email protected]>
  • Loading branch information
jamezp committed Nov 11, 2022
1 parent 36c4771 commit 24f4e33
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
35 changes: 35 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
ignore:
- dependency-name: 'jakarta.ejb:jakarta.ejb-api'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'jakarta.enterprise:jakarta.enterprise.cdi-api'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'jakarta.inject:jakarta.inject-api'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'jakarta.servlet:jakarta.servlet-api'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'org.jboss:jboss-ejb-client'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'org.wildfly.core:*'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'org.wildfly.plugins:*'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
- dependency-name: 'org.wildfly.security:*'
update-types: ['version-update:semver-major', 'version-update:semver-minor']
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "daily"
8 changes: 5 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ name: Java CI with Maven

on:
push:
branches:
- '**'
branches-ignore:
- 'dependabot/**'
paths-ignore:
- ".github/workflows/manual-*.yml"
pull_request:
branches:
- '**'
Expand Down Expand Up @@ -40,4 +42,4 @@ jobs:
if: failure()
with:
name: server-logs-${{ matrix.os }}-${{ matrix.java }}
path: '**/server.log'
path: '**/server.log'

0 comments on commit 24f4e33

Please sign in to comment.