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
This commit is contained in:
parent
f8ad4d1e99
commit
a0cdefb5fb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue