diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-06-18 12:01:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 12:01:18 +0530 |
commit | fed8236738427d0afbc5bb12585fdae057d3917b (patch) | |
tree | a34ceeedac9cf995725a482290767ff78dbd8836 /.github/workflows/pull_request.yml | |
parent | 8ff37e953fafb05aed9908c4b743da259ed0912d (diff) |
Automate release steps (#849)
Diffstat (limited to '.github/workflows/pull_request.yml')
-rw-r--r-- | .github/workflows/pull_request.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 843e7344..e6d49b6e 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") || f.filename.startsWith("gradle") || f.filename.endsWith("properties")).length > 0 + 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 console.log(serviceChanged) return serviceChanged |