mirror of
https://github.com/apache/superset.git
synced 2026-04-16 22:55:52 +00:00
Quick fix for bad regex in GH Workflow (#10015)
This commit is contained in:
2
.github/workflows/license-check.yml
vendored
2
.github/workflows/license-check.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user