From a0cdefb5fbfc1f6f3509cdbcd3eba85f5b2b124a Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Thu, 17 Jan 2019 21:24:35 +0200 Subject: [PATCH] ci(docs-infra): do not automatically post preview comments on PRs for team (#28211) Right now, we post such comments whenever a file has been touched that could potentially have affected the docs. Since the API docs are built from comments in the source code, almost all non-docs changes are generating such preview comments, even though most of the time they are irrelevant to the author and create unnecessary noise on the PR (especially for actively worked-on PRs). This commit removes the `team` GitHub team from the list of teams whose members will automatically get preview comments. (Adding the `aio: preview` label would still work on any PR.) Jira: FW-967 PR Close #28211 --- aio/aio-builds-setup/dockerbuild/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/aio-builds-setup/dockerbuild/Dockerfile b/aio/aio-builds-setup/dockerbuild/Dockerfile index 1145c41b64..f5c137991f 100644 --- a/aio/aio-builds-setup/dockerbuild/Dockerfile +++ b/aio/aio-builds-setup/dockerbuild/Dockerfile @@ -26,8 +26,8 @@ ARG AIO_GITHUB_ORGANIZATION=angular ARG TEST_AIO_GITHUB_ORGANIZATION=test-org ARG AIO_GITHUB_REPO=angular ARG TEST_AIO_GITHUB_REPO=test-repo -ARG AIO_GITHUB_TEAM_SLUGS=team,aio-contributors -ARG TEST_AIO_GITHUB_TEAM_SLUGS=team,aio-contributors +ARG AIO_GITHUB_TEAM_SLUGS=aio-contributors +ARG TEST_AIO_GITHUB_TEAM_SLUGS=aio-contributors ARG AIO_NGINX_HOSTNAME=$AIO_DOMAIN_NAME ARG TEST_AIO_NGINX_HOSTNAME=$TEST_AIO_DOMAIN_NAME ARG AIO_NGINX_PORT_HTTP=80