Просмотр исходного кода

Merge pull request #1482 from Rajpratik71/Rajpratik71-patch-1

feat: dependabot workflow automation for updating dependency
Ajay Tripathy 3 лет назад
Родитель
Сommit
6ece270fb2
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      .github/dependabot.yml

+ 13 - 0
.github/dependabot.yml

@@ -0,0 +1,13 @@
+version: 2
+updates:
+  # Dependencies listed in go.mod
+  - package-ecosystem: "gomod"
+    directory: "/" # Location of package manifests
+    schedule:
+      interval: "weekly"
+
+  # Dependencies listed in .github/workflows/*.yml
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "weekly"