aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2020-09-03 12:03:41 +0530
committerGitHub <noreply@github.com>2020-09-03 12:03:41 +0530
commit258ccc601605f3112d9310043b9a34bf6ca3c9e0 (patch)
tree17c040867b5268ec99f85a2ae1275d1483ecea8a /.github
parent9083ec896ef6ec23c3538cd19dfd237deb678f13 (diff)
github: also run presubmit tests for buildSrc changes (#1074)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pull_request.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index e6e600fb..25829a9a 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -22,7 +22,7 @@ jobs:
pull_number: context.payload.number,
per_page: 100
})
- const serviceChanged = result.data.filter(f => f.filename.startsWith("app/") || f.filename.endsWith("gradle") || f.filename.startsWith(".github/workflows/pull_request.yml") || f.filename.startsWith("gradle") || f.filename.endsWith("properties")).length > 0
+ const serviceChanged = result.data.filter(f => f.filename.startsWith("app/") || f.filename.startsWith("buildSrc/") || f.filename.endsWith("gradle") || f.filename.startsWith(".github/workflows/pull_request.yml") || f.filename.startsWith("gradle") || f.filename.endsWith("properties")).length > 0
console.log(serviceChanged)
return serviceChanged