forked from python-restx/flask-restx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b2c573
commit 96b6530
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# configure updates globally | ||
# default: all | ||
# allowed: all, insecure, False | ||
# update: all | ||
|
||
# configure dependency pinning globally | ||
# default: True | ||
# allowed: True, False | ||
pin: False | ||
|
||
# set the default branch | ||
# default: empty, the default branch on GitHub | ||
# branch: dev | ||
|
||
# update schedule | ||
# default: empty | ||
# allowed: "every day", "every week", .. | ||
# schedule: "every day" | ||
|
||
# search for requirement files | ||
# default: True | ||
# allowed: True, False | ||
# search: True | ||
|
||
# Specify requirement files by hand, default is empty | ||
# default: empty | ||
# allowed: list | ||
# requirements: | ||
# - requirements/staging.txt: | ||
# # update all dependencies and pin them | ||
# update: all | ||
# pin: True | ||
# - requirements/dev.txt: | ||
# # don't update dependencies, use global 'pin' default | ||
# update: False | ||
# - requirements/prod.txt: | ||
# # update insecure only, pin all | ||
# update: insecure | ||
# pin: True | ||
|
||
# add a label to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
label_prs: update | ||
|
||
# assign users to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# assignees: | ||
# - carl | ||
# - carlsen | ||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
branch_prefix: pyup/ | ||
|
||
# set a global prefix for PRs | ||
# default: empty | ||
pr_prefix: "[PyUP]" | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
close_prs: True |