You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/07/13 19:53:27 UTC

[beam-starter-go] branch main updated: Enable dependabot (#4)

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/beam-starter-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 958a9d5  Enable dependabot (#4)
958a9d5 is described below

commit 958a9d583006e79015288653f29f6f34b8e7a181
Author: David Cavazos <dc...@google.com>
AuthorDate: Wed Jul 13 12:53:23 2022 -0700

    Enable dependabot (#4)
    
    * enable dependabot
    
    * add missing copyrights
---
 .github/dependabot.yml | 19 +++++++++++++++++++
 go.mod                 |  8 ++++++++
 main.go                |  8 ++++++++
 main_test.go           |  8 ++++++++
 4 files changed, 43 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..eef031a
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,19 @@
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
+# option. This file may not be copied, modified, or distributed
+# except according to those terms.
+
+version: 2
+updates:
+  - package-ecosystem: "gomod"
+    directory: "/"
+    schedule:
+      interval: "daily"
+
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
diff --git a/go.mod b/go.mod
index 384a216..d8d2071 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,11 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 module example.com/my_app
 
 go 1.18
diff --git a/main.go b/main.go
index 55138fc..5245f9a 100644
--- a/main.go
+++ b/main.go
@@ -1,3 +1,11 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 package main
 
 import (
diff --git a/main_test.go b/main_test.go
index f31d48d..18ed5bd 100644
--- a/main_test.go
+++ b/main_test.go
@@ -1,3 +1,11 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 package main
 
 import (