From f00af3ea083da0904a59549251c77501cfc8ba88 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 13 Dec 2018 06:48:36 -0800 Subject: [PATCH] ci: exclude unnedeed files and directories from angular-robot g3sync check (#27653) We are overincluding files, all of these are not necessary in google3 and should not be synced because it's only slowing us down. Related CL: http://cl/225197013 PR Close #27653 --- .github/angular-robot.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/angular-robot.yml b/.github/angular-robot.yml index 4fb3e7e964..e71ae2023d 100644 --- a/.github/angular-robot.yml +++ b/.github/angular-robot.yml @@ -39,18 +39,30 @@ merge: - "packages/**" # list of patterns to ignore for the files changed by the PR exclude: - - "packages/bazel/*.bzl" + - "packages/*" + - "packages/bazel/*" + - "packages/bazel/src/builders/**" + - "packages/bazel/src/ng_package/**" + - "packages/bazel/src/protractor/**" + - "packages/bazel/src/schematics/**" + - "packages/compiler-cli/src/ngcc/**" + - "packages/docs/**" + - "packages/elements/schematics/**" + - "packages/examples/**" - "packages/language-service/**" + - "packages/private/**" + - "packages/service-worker/**" - "**/.gitignore" - "**/.gitkeep" + - "**/yarn.lock" - "**/package.json" - "**/tsconfig-build.json" - "**/tsconfig.json" - "**/rollup.config.js" - "**/BUILD.bazel" + - "**/*.md" - "packages/**/integrationtest/**" - "packages/**/test/**" - - "packages/compiler-cli/src/ngcc/**" # comment that will be added to a PR when there is a conflict, leave empty or set to false to disable mergeConflictComment: "Hi @{{PRAuthor}}! This PR has merge conflicts due to recent upstream merges.