You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2021/05/14 17:05:37 UTC

[avro] branch master updated: AVRO-3139: Only Run Spotless on Java Changesets (#1220)

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

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 542b65d  AVRO-3139: Only Run Spotless on Java Changesets (#1220)
542b65d is described below

commit 542b65d174759f32666139422d848daccc4a1c3d
Author: Michael A. Smith <mi...@smith-li.com>
AuthorDate: Fri May 14 13:05:24 2021 -0400

    AVRO-3139: Only Run Spotless on Java Changesets (#1220)
    
    Spotless is only configured to run on java right now, so it seems a waste of github actions to run it on anything else. Later, we should discuss running spotless checks for other languages.
---
 .github/workflows/spotless.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/spotless.yml b/.github/workflows/spotless.yml
index 401a760..45c7e9d 100644
--- a/.github/workflows/spotless.yml
+++ b/.github/workflows/spotless.yml
@@ -20,6 +20,9 @@ on:
     branches: [ master ]
   pull_request:
     branches: [ master ]
+    paths:
+    - .github/workflows/spotless.yml
+    - lang/java/**
 
 jobs:
   spotless: