Skip to content

Commit

Permalink
maintenance: add actions to dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Feb 9, 2024
1 parent 1cfb7db commit e780bac
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
# 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://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot

version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
# create a group of dependencies to be updated together in one pull request
groups:
# specify a name for the group, which will be used in pull request titles
# and branch names
dependencies:
# define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*" # matches all dependencies in the package ecosystem

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions:
patterns:
- "*" # group all updates into a single larger pull request

0 comments on commit e780bac

Please sign in to comment.