Skip to content

Commit

Permalink
ci(workflows): add Dependabot config
Browse files Browse the repository at this point in the history
  • Loading branch information
koeaw committed Oct 8, 2024
1 parent 834e8d0 commit c3f7043
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# SPDX-FileCopyrightText: 2024 K Kollmann
# SPDX-License-Identifier: MIT

version: 2
updates:
# dependencies for GitHub Actions
- package-ecosystem: "github-actions"
# workflows/actions are assumed to be in (have as root) .github/workflows
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "ci"
include: "scope"
reviewers:
- "koeaw"
# Frischmuth project dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "build"
include: "scope"
reviewers:
- "koeaw"
groups:
apis-dependencies:
patterns:
- "apis-*"
project-dev-dependencies:
# includes all [tool.poetry.group.*.dependencies]
dependency-type: development
project-dependencies:
applies-to: version-updates
vulnerabilities:
applies-to: security-updates

0 comments on commit c3f7043

Please sign in to comment.