dependabot.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Github Dependabot config file
  2. # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
  3. version: 2
  4. updates:
  5. # Maintain dependencies for GitHub Actions
  6. - package-ecosystem: "github-actions"
  7. # Workflow files stored in the
  8. # default location of `.github/workflows`
  9. directory: "/"
  10. schedule:
  11. interval: "weekly"
  12. day: "saturday"
  13. time: "12:00"
  14. timezone: "Europe/Paris"
  15. # Specify labels for `gha` pull requests
  16. labels:
  17. - "🔗 dependencies"
  18. - "🔗 dependencies:github-actions"
  19. - "🤖 automation"
  20. commit-message:
  21. # Prefix all commit messages with `chore` (follow conventional-commits)
  22. # include a list of updated dependencies
  23. prefix: "chore"
  24. include: "scope"
  25. # Allow up to N open pull requests (0 to disable)
  26. open-pull-requests-limit: 10
  27. pull-request-branch-name:
  28. # Separate sections of the branch name with a hyphen
  29. # for example, `dependabot/github_actions/actions/checkout-2.3.1`
  30. separator: "/"
  31. # Add the arrays of assignees and reviewers
  32. assignees:
  33. - "EbookFoundation/maintainers"
  34. reviewers:
  35. - "EbookFoundation/reviewers"