Skip to content

Commit

Permalink
Update dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 1, 2024
1 parent 9a0e9c7 commit 8bb21c7
Showing 1 changed file with 122 additions and 11 deletions.
133 changes: 122 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,141 @@

---

# =============================================================================
# Dependabot Configuration
# =============================================================================

version: 2

updates:

- package-ecosystem: github-actions
directory: /
# Git Submodule dependencies
# ===========================================================================

-
package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: daily
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: master
target-branch: "main"
commit-message:
prefix: "dependabot-gitsubmodule"
include: "scope"
labels:
- "dependencies"
- "gitsubmodule"



- package-ecosystem: docker
directory: /.devcontainer
# GitHub Actions dependencies
# ===========================================================================

-
package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: master
target-branch: "main"
commit-message:
prefix: "dependabot-github-actions"
include: "scope"
labels:
- "dependencies"
- "github-actions"


# NPM dependencies
# ===========================================================================

-
package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: "main"
commit-message:
prefix: "npm"
labels:
- "dependencies"
- "npm"


# Docker dependencies
# ===========================================================================

-
package-ecosystem: "docker"
directory: "/src/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: "main"
commit-message:
prefix: "dependabot-docker"
labels:
- "dependencies"
- "docker"


# devContainer dependencies
# ===========================================================================

-
package-ecosystem: "docker"
directory: "/.devcontainer"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: "main"
commit-message:
prefix: "dependabot-devcontainer"
labels:
- "dependencies"
- "devcontainer"

-
package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: "main"
commit-message:
prefix: "dependabot-devcontainer"
labels:
- "dependencies"
- "devcontainer"


# PIP dependencies
# ===========================================================================

- package-ecosystem: "npm"
-
package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Europe/Amsterdam"
target-branch: master
target-branch: "main"
commit-message:
prefix: "dependabot-pip"
labels:
- "dependencies"
- "pip"

0 comments on commit 8bb21c7

Please sign in to comment.