aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-11-28 23:58:12 +0100
committertgingold <tgingold@users.noreply.github.com>2022-11-30 05:12:08 +0100
commit959e29daa2a8c1eda16a3ff9fefde7c8eb3a8169 (patch)
tree16667e9c53290faf46742b8681a48c7d1318a73b /.github
parentce4d5bb4a53d12a02f9a297f16513a99de2ab069 (diff)
downloadghdl-959e29daa2a8c1eda16a3ff9fefde7c8eb3a8169.tar.gz
ghdl-959e29daa2a8c1eda16a3ff9fefde7c8eb3a8169.tar.bz2
ghdl-959e29daa2a8c1eda16a3ff9fefde7c8eb3a8169.zip
Add dependabot scanning and PR suggestions for Python packages as well as GitHub Actions.
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..2b1fbc968
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,31 @@
+version: 2
+updates:
+ # Maintain Python packages
+ - package-ecosystem: "pip"
+ directory: "/"
+ target-branch: master
+ commit-message:
+ prefix: "[Dependabot]"
+ labels:
+ - Dependencies
+ reviewers:
+ - tgingold
+ - Paebbels
+ - umarcor
+ schedule:
+ interval: "daily" # Checks on Monday trough Friday.
+
+ # Maintain GitHub Action runners
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ target-branch: master
+ commit-message:
+ prefix: "[Dependabot]"
+ labels:
+ - Dependencies
+ reviewers:
+ - tgingold
+ - Paebbels
+ - umarcor
+ schedule:
+ interval: "weekly"