You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lo...@apache.org on 2020/04/16 22:37:39 UTC

[beam] branch lostluck-gosum-rat created (now 7869455)

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

lostluck pushed a change to branch lostluck-gosum-rat
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at 7869455  [BEAM-5379] Ignore go.sum files in RAT checks

This branch includes the following new commits:

     new 7869455  [BEAM-5379] Ignore go.sum files in RAT checks

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: [BEAM-5379] Ignore go.sum files in RAT checks

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a commit to branch lostluck-gosum-rat
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 7869455ff38ce4791c5531022ffb75e7f007e06e
Author: Robert Burke <lo...@users.noreply.github.com>
AuthorDate: Thu Apr 16 15:37:26 2020 -0700

    [BEAM-5379] Ignore go.sum files in RAT checks
    
    R: @youngoli
    cc: @boyuanzz @lukecwik @damondouglas
---
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build.gradle b/build.gradle
index bd483d3..708a66b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -74,6 +74,9 @@ rat {
     "**/apache_beam/portability/api/*_pb2*.py",
     "**/go/pkg/beam/**/*.pb.go",
 
+    // Ignore go.sum files, which don't permit headers
+    "**/go.sum",
+
     // Ignore Go test data files
     "**/go/data/**",