Browse Source

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

feat: dependabot workflow automation for updating dependency
Ajay Tripathy 3 năm trước cách đây
mục cha
commit
6ece270fb2
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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"