papermill

Форк
0
/
dependabot.yml 
37 строк · 1.2 Кб
1
# Basic dependabot.yml file with minimum configuration for two package managers
2

3
version: 2
4
updates:
5
  # Enable version updates for GitHub Actions
6
  - package-ecosystem: "github-actions"
7
    directory: "/"
8
    # Check for updates once a week
9
    schedule:
10
      interval: "monthly"
11
    # Labels on pull requests for version updates only
12
    labels: ["ci"]
13
    pull-request-branch-name:
14
      # Separate sections of the branch name with a hyphen for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
15
      separator: "-"
16
    # Allow up to 5 open pull requests for GitHub Actions
17
    open-pull-requests-limit: 5
18
    reviewers:
19
      - "borda"
20

21
  # Enable version updates for python
22
  - package-ecosystem: "pip"
23
    # Look for a `requirements` in the `root` directory
24
    directory: "/requirements"
25
    # Check for updates once a week
26
    schedule:
27
      interval: "weekly"
28
    # Labels on pull requests for version updates only
29
    labels: ["enhancement"]
30
    pull-request-branch-name:
31
      # Separate sections of the branch name with a hyphen
32
      # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
33
      separator: "-"
34
    # Allow up to 5 open pull requests for pip dependencies
35
    open-pull-requests-limit: 5
36
    reviewers:
37
      - "willingc"
38

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.