summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-04-25 21:19:48 -0400
committerGitHub <noreply@github.com>2021-04-25 21:19:48 -0400
commit2f690f6083feea9a16ea3711f391d598a2ed1228 (patch)
tree5b4c4c6f09d49e8b06beab4eebca96fb7014d7e8
parent6e2d0ba00b60c10466b0e040e2d4b1206c3f0b3d (diff)
downloadpytest-runner-2f690f6083feea9a16ea3711f391d598a2ed1228.tar.gz
Enable dependabot (#50)
* Added a config for dependabot. * Update features list for dependabot. Co-authored-by: KOLANICH <kolan_n@mail.ru>
-rw-r--r--.github/dependabot.yml8
-rw-r--r--skeleton.md1
2 files changed, 9 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..89ff339
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,8 @@
+version: 2
+updates:
+ - package-ecosystem: "pip"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ allow:
+ - dependency-type: "all"
diff --git a/skeleton.md b/skeleton.md
index 0938f89..af5f2ca 100644
--- a/skeleton.md
+++ b/skeleton.md
@@ -77,6 +77,7 @@ The features/techniques employed by the skeleton include:
- A CHANGES.rst file intended for publishing release notes about the project
- Use of [Black](https://black.readthedocs.io/en/stable/) for code formatting (disabled on unsupported Python 3.5 and earlier)
- Integrated type checking through [mypy](https://github.com/python/mypy/).
+- Dependabot enabled to enable supply chain security.
## Packaging Conventions