mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
38 lines
1.6 KiB
YAML
38 lines
1.6 KiB
YAML
# Configuration options: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
|
|
version: 2
|
|
updates:
|
|
# Enable version updates for git submodules
|
|
# If SemVer is used, updates will happen to new releases only (not HEAD)
|
|
# https://github.com/dependabot/dependabot-core/issues/1639
|
|
# https://github.com/dependabot/dependabot-core/issues/2192
|
|
- package-ecosystem: "gitsubmodule"
|
|
# Look for `.gitmodules` in the `root` directory
|
|
directory: "/"
|
|
# Check for updates once a month
|
|
schedule:
|
|
interval: "monthly"
|
|
# Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted)
|
|
open-pull-requests-limit: 2
|
|
|
|
# # Enable version updates for Docker
|
|
# Not yet possible to bump from one LTS version to the next and skip others, see:
|
|
# https://github.com/dependabot/dependabot-core/issues/2247
|
|
# - package-ecosystem: "docker"
|
|
# # Look for a `Dockerfile` in the `root` directory
|
|
# directory: "/"
|
|
# # Check for updates once a week
|
|
# schedule:
|
|
# interval: "weekly"
|
|
# # Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted)
|
|
# open-pull-requests-limit: 1
|
|
|
|
# Enable version updates for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
# Directory must be set to "/" to check for workflow files in .github/workflows
|
|
directory: "/"
|
|
# Check for updates to GitHub Actions once a week
|
|
schedule:
|
|
interval: "weekly"
|
|
# Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted)
|
|
open-pull-requests-limit: 2
|