You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2020/06/08 22:03:11 UTC

[incubator-superset] branch master updated: Quick fix for bad regex in GH Workflow (#10015)

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

craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a3305e  Quick fix for bad regex in GH Workflow (#10015)
2a3305e is described below

commit 2a3305e7ddaf48da6c2ef9951d93c096b46f0cd3
Author: Craig Rueda <cr...@craigrueda.com>
AuthorDate: Mon Jun 8 15:02:48 2020 -0700

    Quick fix for bad regex in GH Workflow (#10015)
---
 .github/workflows/license-check.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/license-check.yml b/.github/workflows/license-check.yml
index 6b38654..5494dec 100644
--- a/.github/workflows/license-check.yml
+++ b/.github/workflows/license-check.yml
@@ -33,7 +33,7 @@ jobs:
         
         EOF
 
-        if [[ "$FILES" =~ ^(.*package*\.json|.*requirements*\.txt)$ ]]; then
+        if [[ "${FILES}" =~ (.*package*\.json|requirements.*\.txt|setup\.py) ]]; then
           echo "Detected dependency changes... running fossa check"
 
           ./scripts/fossa.sh