Skip to content

Commit

Permalink
Dependabot PR limit should be integer
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 11, 2024
1 parent 38310c9 commit 26613e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion repo_helper/files/bots.py
Expand Up @@ -180,7 +180,7 @@ def make_dependabotv2(repo_path: pathlib.Path, templates: Environment) -> List[s
"package-ecosystem": "pip",
"directory": '/',
"schedule": {"interval": "weekly"},
"open-pull-requests-limit": '0',
"open-pull-requests-limit": 0,
"reviewers": [templates.globals["assignee"]],
}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_files/test_bots_/test_make_dependabotv2.yml
Expand Up @@ -6,6 +6,6 @@ updates:
directory: /
schedule:
interval: weekly
open-pull-requests-limit: '0'
open-pull-requests-limit: 0
reviewers:
- octocat

0 comments on commit 26613e2

Please sign in to comment.