build: reformat yml files (#42136)

Reformat all yml files in the repository.

PR Close #42136
This commit is contained in:
Joey Perrott 2021-05-14 10:54:35 -07:00 committed by atscott
parent ca80521820
commit ef676bf946
3 changed files with 148 additions and 203 deletions

View File

@ -474,7 +474,7 @@ jobs:
aio_preview: aio_preview:
executor: default-executor executor: default-executor
environment: environment:
AIO_SNAPSHOT_ARTIFACT_PATH: &aio_preview_artifact_path "aio/tmp/snapshot.tgz" AIO_SNAPSHOT_ARTIFACT_PATH: &aio_preview_artifact_path 'aio/tmp/snapshot.tgz'
steps: steps:
- custom_attach_workspace - custom_attach_workspace
- init_environment - init_environment
@ -557,12 +557,12 @@ jobs:
publish_packages_as_artifacts: publish_packages_as_artifacts:
executor: default-executor executor: default-executor
environment: environment:
AIMWA_PACKAGES_DIR: &aimwa_packages_dir "dist/angular-in-memory-web-api-dist" AIMWA_PACKAGES_DIR: &aimwa_packages_dir 'dist/angular-in-memory-web-api-dist'
AIMWA_PACKAGES_ARCHIVES_DIR: &aimwa_packages_archives_dir "dist/angular-in-memory-web-api-dist-archives" AIMWA_PACKAGES_ARCHIVES_DIR: &aimwa_packages_archives_dir 'dist/angular-in-memory-web-api-dist-archives'
NG_PACKAGES_DIR: &ng_packages_dir "dist/packages-dist" NG_PACKAGES_DIR: &ng_packages_dir 'dist/packages-dist'
NG_PACKAGES_ARCHIVES_DIR: &ng_packages_archives_dir "dist/packages-dist-archives" NG_PACKAGES_ARCHIVES_DIR: &ng_packages_archives_dir 'dist/packages-dist-archives'
ZONEJS_PACKAGES_DIR: &zonejs_packages_dir "dist/zone.js-dist" ZONEJS_PACKAGES_DIR: &zonejs_packages_dir 'dist/zone.js-dist'
ZONEJS_PACKAGES_ARCHIVES_DIR: &zonejs_packages_archives_dir "dist/zone.js-dist-archives" ZONEJS_PACKAGES_ARCHIVES_DIR: &zonejs_packages_archives_dir 'dist/zone.js-dist-archives'
steps: steps:
- custom_attach_workspace - custom_attach_workspace
- init_environment - init_environment
@ -713,7 +713,7 @@ jobs:
# repository to be able to support arbitrary SHAs. # repository to be able to support arbitrary SHAs.
- *components_repo_unit_tests_cache_key_fallback - *components_repo_unit_tests_cache_key_fallback
- run: - run:
name: "Fetching angular/components repository" name: 'Fetching angular/components repository'
command: ./scripts/ci/clone_angular_components_repo.sh command: ./scripts/ci/clone_angular_components_repo.sh
- run: - run:
# Run yarn install to fetch the Bazel binaries as used in the components repo. # Run yarn install to fetch the Bazel binaries as used in the components repo.
@ -725,7 +725,7 @@ jobs:
# Temporary directory must be kept in sync with the `$COMPONENTS_REPO_TMP_DIR` env # Temporary directory must be kept in sync with the `$COMPONENTS_REPO_TMP_DIR` env
# variable. It needs to be hardcoded here, because env variables interpolation is # variable. It needs to be hardcoded here, because env variables interpolation is
# not supported. # not supported.
- "/tmp/angular-components-repo" - '/tmp/angular-components-repo'
- run: - run:
# Updates the `angular/components` `package.json` file to refer to the release output # Updates the `angular/components` `package.json` file to refer to the release output
# inside the `packages-dist` directory. # inside the `packages-dist` directory.
@ -737,7 +737,7 @@ jobs:
name: Installing local Angular packages. name: Installing local Angular packages.
command: yarn --cwd ${COMPONENTS_REPO_TMP_DIR} install --non-interactive --cache-folder ~/.cache/yarn command: yarn --cwd ${COMPONENTS_REPO_TMP_DIR} install --non-interactive --cache-folder ~/.cache/yarn
- run: - run:
name: "Running `angular/components` unit tests" name: 'Running `angular/components` unit tests'
command: ./scripts/ci/run_angular_components_unit_tests.sh command: ./scripts/ci/run_angular_components_unit_tests.sh
test_zonejs: test_zonejs:
@ -907,4 +907,4 @@ workflows:
- schedule: - schedule:
<<: *only_on_master <<: *only_on_master
# Runs monitoring jobs at 10:00AM every day. # Runs monitoring jobs at 10:00AM every day.
cron: "0 10 * * *" cron: '0 10 * * *'

View File

@ -4,7 +4,7 @@
size: size:
disabled: false disabled: false
maxSizeIncrease: 2000 maxSizeIncrease: 2000
circleCiStatusName: "ci/circleci: test_ivy_aot" circleCiStatusName: 'ci/circleci: test_ivy_aot'
# options for the merge plugin # options for the merge plugin
merge: merge:
@ -13,85 +13,84 @@ merge:
# set to true to disable # set to true to disable
disabled: false disabled: false
# the name of the status # the name of the status
context: "ci/angular: merge status" context: 'ci/angular: merge status'
# text to show when all checks pass # text to show when all checks pass
successText: "All checks passed!" successText: 'All checks passed!'
# text to show when some checks are failing # text to show when some checks are failing
failureText: "The following checks are failing:" failureText: 'The following checks are failing:'
# the g3 status will be added to your pull requests if they include files that match the patterns # the g3 status will be added to your pull requests if they include files that match the patterns
g3Status: g3Status:
# set to true to disable # set to true to disable
disabled: false disabled: false
# the name of the status # the name of the status
context: "google3" context: 'google3'
# text to show when the status is pending, {{PRNumber}} will be replaced by the PR number # text to show when the status is pending, {{PRNumber}} will be replaced by the PR number
pendingDesc: "Googler: run g3sync presubmit {{PRNumber}}" pendingDesc: 'Googler: run g3sync presubmit {{PRNumber}}'
# text to show when the status is success # text to show when the status is success
successDesc: "Does not affect google3" successDesc: 'Does not affect google3'
# link to use for the details # link to use for the details
url: "http://go/angular/g3sync" url: 'http://go/angular/g3sync'
# list of patterns to check for the files changed by the PR # list of patterns to check for the files changed by the PR
# this list must be manually kept in sync with google3/third_party/javascript/angular2/copy.bara.sky # this list must be manually kept in sync with google3/third_party/javascript/angular2/copy.bara.sky
include: include:
- "LICENSE" - 'LICENSE'
- "modules/benchmarks/**" - 'modules/benchmarks/**'
- "modules/system.d.ts" - 'modules/system.d.ts'
- "packages/**" - 'packages/**'
- "dev-infra/benchmark/driver-utilities/**" - 'dev-infra/benchmark/driver-utilities/**'
# list of patterns to ignore for the files changed by the PR # list of patterns to ignore for the files changed by the PR
exclude: exclude:
- "packages/*" - 'packages/*'
- "packages/bazel/*" - 'packages/bazel/*'
- "packages/bazel/src/api-extractor/**" - 'packages/bazel/src/api-extractor/**'
- "packages/bazel/src/builders/**" - 'packages/bazel/src/builders/**'
- "packages/bazel/src/ng_package/**" - 'packages/bazel/src/ng_package/**'
- "packages/bazel/src/protractor/**" - 'packages/bazel/src/protractor/**'
- "packages/bazel/src/schematics/**" - 'packages/bazel/src/schematics/**'
- "packages/compiler-cli/src/ngcc/**" - 'packages/compiler-cli/src/ngcc/**'
- "packages/compiler-cli/linker/**" - 'packages/compiler-cli/linker/**'
- "packages/compiler-cli/ngcc/**" - 'packages/compiler-cli/ngcc/**'
- "packages/compiler-cli/src/ngtsc/sourcemaps/**" - 'packages/compiler-cli/src/ngtsc/sourcemaps/**'
- "packages/docs/**" - 'packages/docs/**'
- "packages/elements/schematics/**" - 'packages/elements/schematics/**'
- "packages/examples/**" - 'packages/examples/**'
- "packages/language-service/**" - 'packages/language-service/**'
- "packages/localize/**" - 'packages/localize/**'
- "packages/private/**" - 'packages/private/**'
- "packages/service-worker/**" - 'packages/service-worker/**'
- "packages/common/locales/**" - 'packages/common/locales/**'
- "packages/http/**" - 'packages/http/**'
- "**/.gitignore" - '**/.gitignore'
- "**/.gitkeep" - '**/.gitkeep'
- "**/yarn.lock" - '**/yarn.lock'
- "**/package.json" - '**/package.json'
- "**/third_party/**" - '**/third_party/**'
- "**/tsconfig-build.json" - '**/tsconfig-build.json'
- "**/tsconfig.json" - '**/tsconfig.json'
- "**/rollup.config.js" - '**/rollup.config.js'
- "**/BUILD.bazel" - '**/BUILD.bazel'
- "**/*.md" - '**/*.md'
- "packages/**/integrationtest/**" - 'packages/**/integrationtest/**'
- "packages/**/test/**" - 'packages/**/test/**'
- "packages/zone.js/*" - 'packages/zone.js/*'
- "packages/zone.js/dist/**" - 'packages/zone.js/dist/**'
- "packages/zone.js/doc/**" - 'packages/zone.js/doc/**'
- "packages/zone.js/example/**" - 'packages/zone.js/example/**'
- "packages/zone.js/scripts/**" - 'packages/zone.js/scripts/**'
# comment that will be added to a PR when there is a conflict, leave empty or set to false to disable # 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.\nPlease help to unblock it by resolving these conflicts. Thanks!" mergeConflictComment: "Hi @{{PRAuthor}}! This PR has merge conflicts due to recent upstream merges.\nPlease help to unblock it by resolving these conflicts. Thanks!"
# label to monitor # label to monitor
mergeLabel: "action: merge" mergeLabel: 'action: merge'
# adding any of these labels will also add the merge label # adding any of these labels will also add the merge label
mergeLinkedLabels: mergeLinkedLabels:
- "action: merge-assistance" - 'action: merge-assistance'
# list of checks that will determine if the merge label can be added # list of checks that will determine if the merge label can be added
checks: checks:
# require that the PR has reviews from all requested reviewers # require that the PR has reviews from all requested reviewers
# #
# This enables us to request reviews from both eng and tech writers, or multiple eng folks, and prevents accidental merges. # This enables us to request reviews from both eng and tech writers, or multiple eng folks, and prevents accidental merges.
@ -102,26 +101,25 @@ merge:
noConflict: true noConflict: true
# list of labels that a PR needs to have, checked with a regexp (e.g. "target:" will work for the label "target: master") # list of labels that a PR needs to have, checked with a regexp (e.g. "target:" will work for the label "target: master")
requiredLabels: requiredLabels:
- "target: *" - 'target: *'
- "cla: yes" - 'cla: yes'
# list of labels that a PR shouldn't have, checked after the required labels with a regexp # list of labels that a PR shouldn't have, checked after the required labels with a regexp
forbiddenLabels: forbiddenLabels:
- "target: TBD" - 'target: TBD'
- "action: cleanup" - 'action: cleanup'
- "action: review" - 'action: review'
- "state: blocked" - 'state: blocked'
- "cla: no" - 'cla: no'
# list of PR statuses that need to be successful # list of PR statuses that need to be successful
requiredStatuses: requiredStatuses:
- "ci/circleci: build" - 'ci/circleci: build'
- "ci/circleci: lint" - 'ci/circleci: lint'
- "ci/angular: size" - 'ci/angular: size'
- "cla/google" - 'cla/google'
- "google3" - 'google3'
- "pullapprove" - 'pullapprove'
# the comment that will be added when the merge label is added despite failing checks, leave empty or set to false to disable # the comment that will be added when the merge label is added despite failing checks, leave empty or set to false to disable
# {{MERGE_LABEL}} will be replaced by the value of the mergeLabel option # {{MERGE_LABEL}} will be replaced by the value of the mergeLabel option
@ -136,40 +134,29 @@ triage:
defaultMilestone: 82, defaultMilestone: 82,
# arrays of labels that determine if an issue has been triaged by the caretaker # arrays of labels that determine if an issue has been triaged by the caretaker
l1TriageLabels: l1TriageLabels:
- - - 'comp: *'
- "comp: *"
# arrays of labels that determine if an issue has been fully triaged # arrays of labels that determine if an issue has been fully triaged
l2TriageLabels: l2TriageLabels:
- - - 'P0'
- "P0" - 'comp: *'
- "comp: *" - - 'P1'
- - 'comp: *'
- "P1" - - 'P2'
- "comp: *" - 'comp: *'
- - - 'P3'
- "P2" - 'comp: *'
- "comp: *" - - 'P4'
- - 'comp: *'
- "P3" - - 'P5'
- "comp: *" - 'comp: *'
- - - 'feature'
- "P4" - 'comp: *'
- "comp: *" - - 'discussion'
- - 'comp: *'
- "P5" - - 'needs clarification'
- "comp: *" - 'comp: *'
- - - 'needs reproduction'
- "feature" - 'comp: *'
- "comp: *"
-
- "discussion"
- "comp: *"
-
- "needs clarification"
- "comp: *"
-
- "needs reproduction"
- "comp: *"
# options for the triage PR plugin # options for the triage PR plugin
triagePR: triagePR:
@ -181,16 +168,14 @@ triagePR:
defaultMilestone: 82, defaultMilestone: 82,
# arrays of labels that determine if a PR has been triaged by the caretaker # arrays of labels that determine if a PR has been triaged by the caretaker
l1TriageLabels: l1TriageLabels:
- - - 'comp: *'
- "comp: *"
# arrays of labels that determine if a PR has been fully triaged # arrays of labels that determine if a PR has been fully triaged
l2TriageLabels: l2TriageLabels:
- - - 'comp: *'
- "comp: *"
# options for rerunning CI # options for rerunning CI
rerunCircleCI: rerunCircleCI:
# set to true to disable # set to true to disable
disabled: false disabled: false
# the label which when added triggers a rerun of the default CircleCI workflow # the label which when added triggers a rerun of the default CircleCI workflow
triggerRerunLabel: "action: rerun CI at HEAD" triggerRerunLabel: 'action: rerun CI at HEAD'

View File

@ -37,7 +37,6 @@
# See reviewer list under `required-minimum-review` group. Team member names and # See reviewer list under `required-minimum-review` group. Team member names and
# usernames are managed there. # usernames are managed there.
#################################################################################### ####################################################################################
# Approval Groups # Approval Groups
#################################################################################### ####################################################################################
@ -60,7 +59,6 @@
# gkalpak # gkalpak
# petebacondarwin # petebacondarwin
version: 3 version: 3
# Meta field that goes unused by PullApprove to allow for defining aliases to be # Meta field that goes unused by PullApprove to allow for defining aliases to be
@ -78,15 +76,12 @@ meta:
# #
# Also note that the ordering of groups matters in this file. The only groups visible to the current # Also note that the ordering of groups matters in this file. The only groups visible to the current
# one are those that appear above it. # one are those that appear above it.
no-groups-above-this-pending: &no-groups-above-this-pending no-groups-above-this-pending: &no-groups-above-this-pending len(groups.active.pending.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0
len(groups.active.pending.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0 no-groups-above-this-rejected: &no-groups-above-this-rejected len(groups.active.rejected.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0
no-groups-above-this-rejected: &no-groups-above-this-rejected no-groups-above-this-active: &no-groups-above-this-active len(groups.active.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0
len(groups.active.rejected.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0
no-groups-above-this-active: &no-groups-above-this-active
len(groups.active.exclude("required-minimum-review").exclude("global-approvers").exclude("global-docs-approvers")) == 0
can-be-global-approved: &can-be-global-approved "\"global-approvers\" not in groups.approved" can-be-global-approved: &can-be-global-approved '"global-approvers" not in groups.approved'
can-be-global-docs-approved: &can-be-global-docs-approved "\"global-docs-approvers\" not in groups.approved" can-be-global-docs-approved: &can-be-global-docs-approved '"global-docs-approvers" not in groups.approved'
defaults: &defaults defaults: &defaults
reviews: reviews:
# Authors provide their approval implicitly, this approval allows for a reviewer # Authors provide their approval implicitly, this approval allows for a reviewer
@ -99,26 +94,25 @@ meta:
# turn on 'draft' support # turn on 'draft' support
# https://docs.pullapprove.com/config/github-api-version/ # https://docs.pullapprove.com/config/github-api-version/
# https://developer.github.com/v3/previews/#draft-pull-requests # https://developer.github.com/v3/previews/#draft-pull-requests
github_api_version: "shadow-cat-preview" github_api_version: 'shadow-cat-preview'
pullapprove_conditions: pullapprove_conditions:
# For PRs which are still being worked on, either still in draft mode or indicated through WIP in # For PRs which are still being worked on, either still in draft mode or indicated through WIP in
# title or label, PullApprove stays in a pending state until its ready for review. # title or label, PullApprove stays in a pending state until its ready for review.
- condition: "'WIP' not in title" - condition: "'WIP' not in title"
unmet_status: pending unmet_status: pending
explanation: "Waiting to send reviews as PR is WIP" explanation: 'Waiting to send reviews as PR is WIP'
- condition: "'PR state: WIP' not in labels" - condition: "'PR state: WIP' not in labels"
unmet_status: pending unmet_status: pending
explanation: "Waiting to send reviews as PR is WIP" explanation: 'Waiting to send reviews as PR is WIP'
- condition: "not draft" - condition: 'not draft'
unmet_status: pending unmet_status: pending
explanation: "Waiting to send reviews as PR is in draft" explanation: 'Waiting to send reviews as PR is in draft'
# Disable PullApprove on specific PRs by adding the `PullApprove: disable` label # Disable PullApprove on specific PRs by adding the `PullApprove: disable` label
- condition: "'PullApprove: disable' not in labels" - condition: "'PullApprove: disable' not in labels"
unmet_status: success unmet_status: success
explanation: "PullApprove skipped because of 'PullApprove: disable' label" explanation: "PullApprove skipped because of 'PullApprove: disable' label"
groups: groups:
# ========================================================= # =========================================================
# Global Approvers # Global Approvers
@ -174,37 +168,37 @@ groups:
reviewed_for: ignored # All reviews apply to this group whether noted via Reviewed-for or not reviewed_for: ignored # All reviews apply to this group whether noted via Reviewed-for or not
reviewers: reviewers:
users: users:
- aikidave # Dave Shevitz - aikidave # Dave Shevitz
- alan-agius4 # Alan Agius - alan-agius4 # Alan Agius
- alxhub # Alex Rickabaugh - alxhub # Alex Rickabaugh
- AndrewKushnir # Andrew Kushnir - AndrewKushnir # Andrew Kushnir
- andrewseguin # Andrew Seguin - andrewseguin # Andrew Seguin
- atscott # Andrew Scott - atscott # Andrew Scott
- ayazhafiz # Ayaz Hafiz - ayazhafiz # Ayaz Hafiz
- clydin # Charles Lyding - clydin # Charles Lyding
- crisbeto # Kristiyan Kostadinov - crisbeto # Kristiyan Kostadinov
- devversion # Paul Gschwendtner - devversion # Paul Gschwendtner
- dgp1130 # Doug Parker - dgp1130 # Doug Parker
- filipesilva # Filipe Silva - filipesilva # Filipe Silva
- gkalpak # Georgios Kalpakas - gkalpak # Georgios Kalpakas
- gregmagolan # Greg Magolan - gregmagolan # Greg Magolan
- IgorMinar # Igor Minar - IgorMinar # Igor Minar
- jbogarthyde # Judy Bogart - jbogarthyde # Judy Bogart
- jelbourn # Jeremy Elbourn - jelbourn # Jeremy Elbourn
- jessicajaniuk # Jessica Janiuk - jessicajaniuk # Jessica Janiuk
- JiaLiPassion # Jia Li - JiaLiPassion # Jia Li
- JoostK # Joost Koehoorn - JoostK # Joost Koehoorn
- josephperrott # Joey Perrott - josephperrott # Joey Perrott
- kyliau # Keen Yee Liau - kyliau # Keen Yee Liau
- manughub # Manu Murthy - manughub # Manu Murthy
- mgechev # Minko Gechev - mgechev # Minko Gechev
- mhevery # Miško Hevery - mhevery # Miško Hevery
- mmalerba # Miles Malerba - mmalerba # Miles Malerba
- petebacondarwin # Pete Bacon Darwin - petebacondarwin # Pete Bacon Darwin
- pkozlowski-opensource # Pawel Kozlowski - pkozlowski-opensource # Pawel Kozlowski
- Splaktar # Michael Prentice - Splaktar # Michael Prentice
- twerske # Emma Twersky - twerske # Emma Twersky
- zarend # Zach Arend - zarend # Zach Arend
# ========================================================= # =========================================================
# Framework: Animations # Framework: Animations
@ -232,7 +226,6 @@ groups:
- IgorMinar - IgorMinar
- jelbourn - jelbourn
# ========================================================= # =========================================================
# Framework: Compiler # Framework: Compiler
# ========================================================= # =========================================================
@ -257,7 +250,6 @@ groups:
- AndrewKushnir - AndrewKushnir
- JoostK - JoostK
# ========================================================= # =========================================================
# Framework: Compiler / ngcc # Framework: Compiler / ngcc
# ========================================================= # =========================================================
@ -274,7 +266,6 @@ groups:
- JoostK - JoostK
- petebacondarwin - petebacondarwin
# ========================================================= # =========================================================
# Framework: Migrations # Framework: Migrations
# ========================================================= # =========================================================
@ -290,7 +281,6 @@ groups:
- crisbeto - crisbeto
- devversion - devversion
# ========================================================= # =========================================================
# Framework: Core # Framework: Core
# ========================================================= # =========================================================
@ -430,7 +420,6 @@ groups:
- jessicajaniuk - jessicajaniuk
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
# ========================================================= # =========================================================
# Framework: Common # Framework: Common
# ========================================================= # =========================================================
@ -453,7 +442,6 @@ groups:
- jessicajaniuk - jessicajaniuk
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
# ========================================================= # =========================================================
# Framework: Http # Framework: Http
# ========================================================= # =========================================================
@ -476,7 +464,6 @@ groups:
- IgorMinar - IgorMinar
- petebacondarwin - petebacondarwin
# ========================================================= # =========================================================
# Framework: Elements # Framework: Elements
# ========================================================= # =========================================================
@ -497,7 +484,6 @@ groups:
- andrewseguin - andrewseguin
- gkalpak - gkalpak
# ========================================================= # =========================================================
# Framework: Forms # Framework: Forms
# ========================================================= # =========================================================
@ -530,7 +516,6 @@ groups:
users: users:
- AndrewKushnir - AndrewKushnir
# ========================================================= # =========================================================
# Framework: i18n # Framework: i18n
# ========================================================= # =========================================================
@ -564,7 +549,6 @@ groups:
- mhevery - mhevery
- petebacondarwin - petebacondarwin
# ========================================================= # =========================================================
# Framework: Platform Server # Framework: Platform Server
# ========================================================= # =========================================================
@ -584,7 +568,6 @@ groups:
- alxhub - alxhub
- kyliau - kyliau
# ========================================================= # =========================================================
# Framework: Router # Framework: Router
# ========================================================= # =========================================================
@ -610,7 +593,6 @@ groups:
users: users:
- atscott - atscott
# ========================================================= # =========================================================
# Framework: Service Worker # Framework: Service Worker
# ========================================================= # =========================================================
@ -638,7 +620,6 @@ groups:
- gkalpak - gkalpak
- IgorMinar - IgorMinar
# ========================================================= # =========================================================
# Framework: Upgrade # Framework: Upgrade
# ========================================================= # =========================================================
@ -669,7 +650,6 @@ groups:
- gkalpak - gkalpak
- petebacondarwin - petebacondarwin
# ========================================================= # =========================================================
# Framework: Testing # Framework: Testing
# ========================================================= # =========================================================
@ -699,7 +679,6 @@ groups:
- IgorMinar - IgorMinar
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
# ========================================================= # =========================================================
# Framework: Benchmarks # Framework: Benchmarks
# ========================================================= # =========================================================
@ -716,7 +695,6 @@ groups:
- IgorMinar - IgorMinar
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
# ========================================================= # =========================================================
# Framework: Playground # Framework: Playground
# ========================================================= # =========================================================
@ -734,7 +712,6 @@ groups:
- jelbourn - jelbourn
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
# ========================================================= # =========================================================
# Framework: Security # Framework: Security
# ========================================================= # =========================================================
@ -760,8 +737,8 @@ groups:
- jelbourn - jelbourn
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
reviews: reviews:
request: -1 # request reviews from everyone request: -1 # request reviews from everyone
required: 2 # require at least 2 approvals required: 2 # require at least 2 approvals
reviewed_for: required reviewed_for: required
# ========================================================= # =========================================================
@ -782,7 +759,6 @@ groups:
- josephperrott - josephperrott
- kyliau - kyliau
# ========================================================= # =========================================================
# Language Service # Language Service
# ========================================================= # =========================================================
@ -803,7 +779,6 @@ groups:
- atscott - atscott
- zarend - zarend
# ========================================================= # =========================================================
# zone.js # zone.js
# ========================================================= # =========================================================
@ -855,7 +830,6 @@ groups:
- alxhub - alxhub
- josephperrott - josephperrott
# ========================================================= # =========================================================
# Integration Tests # Integration Tests
# ========================================================= # =========================================================
@ -873,7 +847,6 @@ groups:
- josephperrott - josephperrott
- mhevery - mhevery
# ========================================================= # =========================================================
# Docs: Contributors # Docs: Contributors
# ========================================================= # =========================================================
@ -892,7 +865,6 @@ groups:
- mgechev - mgechev
- twerske - twerske
# ========================================================= # =========================================================
# Docs: Gettings Started & Tutorial # Docs: Gettings Started & Tutorial
# ========================================================= # =========================================================
@ -927,7 +899,6 @@ groups:
- IgorMinar - IgorMinar
- jelbourn - jelbourn
# ========================================================= # =========================================================
# Docs: Marketing # Docs: Marketing
# ========================================================= # =========================================================
@ -976,7 +947,6 @@ groups:
users: users:
- alxhub - alxhub
# ========================================================= # =========================================================
# Docs: Packaging, Tooling, Releasing # Docs: Packaging, Tooling, Releasing
# ========================================================= # =========================================================
@ -1050,11 +1020,10 @@ groups:
- kyliau - kyliau
- IgorMinar - IgorMinar
reviews: reviews:
request: -1 # request reviews from everyone request: -1 # request reviews from everyone
required: 2 # require at least 2 approvals required: 2 # require at least 2 approvals
reviewed_for: required reviewed_for: required
# ========================================================= # =========================================================
# Docs: CLI # Docs: CLI
# ========================================================= # =========================================================
@ -1090,7 +1059,6 @@ groups:
- IgorMinar - IgorMinar
- mgechev - mgechev
# ========================================================= # =========================================================
# Docs: CLI Libraries # Docs: CLI Libraries
# ========================================================= # =========================================================
@ -1111,7 +1079,6 @@ groups:
- IgorMinar - IgorMinar
- mgechev - mgechev
# ========================================================= # =========================================================
# Docs: Schematics # Docs: Schematics
# ========================================================= # =========================================================
@ -1134,7 +1101,6 @@ groups:
- IgorMinar - IgorMinar
- mgechev - mgechev
# ========================================================= # =========================================================
# Docs-infra # Docs-infra
# ========================================================= # =========================================================
@ -1169,7 +1135,6 @@ groups:
- IgorMinar - IgorMinar
- petebacondarwin - petebacondarwin
# ========================================================= # =========================================================
# Dev-infra # Dev-infra
# ========================================================= # =========================================================
@ -1225,7 +1190,6 @@ groups:
- IgorMinar - IgorMinar
- josephperrott - josephperrott
# ========================================================= # =========================================================
# Public API # Public API
# ========================================================= # =========================================================
@ -1262,7 +1226,6 @@ groups:
required: 3 # Require that three people approve required: 3 # Require that three people approve
reviewed_for: required reviewed_for: required
# ================================================ # ================================================
# Size tracking # Size tracking
# ================================================ # ================================================
@ -1292,7 +1255,6 @@ groups:
required: 2 # Require that two people approve required: 2 # Require that two people approve
reviewed_for: required reviewed_for: required
# ================================================ # ================================================
# Circular dependencies # Circular dependencies
# ================================================ # ================================================
@ -1318,10 +1280,9 @@ groups:
- zarend - zarend
# OOO as of 2020-09-28 - pkozlowski-opensource # OOO as of 2020-09-28 - pkozlowski-opensource
####################################################################################
#################################################################################### # Special Cases
# Special Cases ####################################################################################
####################################################################################
# ========================================================= # =========================================================
# Code Ownership # Code Ownership
@ -1344,7 +1305,6 @@ groups:
- josephperrott - josephperrott
- mhevery - mhevery
# ==================================================== # ====================================================
# Catch all for if no groups match the code change # Catch all for if no groups match the code change
# ==================================================== # ====================================================