Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify dependabot config #3496

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
75 changes: 6 additions & 69 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,75 +28,12 @@ updates:

# Update GitHub Actions versions in workflows
- package-ecosystem: "github-actions"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-type: all
open-pull-requests-limit: 10
pull-request-branch-name:
separator: "-"
labels:
- "Type: Maintenance"
- "Area: Infrastructure"
commit-message:
prefix: "CI: "
include: "scope"

# Update GitHub Actions versions in composite actions--hopefully eventually handled by a
# wildcard
- package-ecosystem: "github-actions"
directory: "/.github/actions/build-docs"
schedule:
interval: "daily"
allow:
- dependency-type: all
open-pull-requests-limit: 10
pull-request-branch-name:
separator: "-"
labels:
- "Type: Maintenance"
- "Area: Infrastructure"
commit-message:
prefix: "CI: "
include: "scope"

- package-ecosystem: "github-actions"
directory: "/.github/actions/install-conda"
schedule:
interval: "daily"
allow:
- dependency-type: all
open-pull-requests-limit: 10
pull-request-branch-name:
separator: "-"
labels:
- "Type: Maintenance"
- "Area: Infrastructure"
commit-message:
prefix: "CI: "
include: "scope"

- package-ecosystem: "github-actions"
directory: "/.github/actions/install-pypi"
schedule:
interval: "daily"
allow:
- dependency-type: all
open-pull-requests-limit: 10
pull-request-branch-name:
separator: "-"
labels:
- "Type: Maintenance"
- "Area: Infrastructure"
commit-message:
prefix: "CI: "
include: "scope"

- package-ecosystem: "github-actions"
directory: "/.github/actions/run-tests"
directories:
- "/.github/workflows"
- "/.github/actions/build-docs"
- "/.github/actions/install-conda"
- "/.github/actions/install-pypi"
- "/.github/actions/run-tests"
schedule:
interval: "daily"
allow:
Expand Down