From 3fba6eff79a9b50909199eaa4ebf754c1c4adba6 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 8 Jan 2019 15:33:28 -0800 Subject: [PATCH] ci: fix public api rule in codeowners (#27999) @alxhub spotted that the public api rule in codeowners is being overriden by the Build & CI Owners rule. swapping the two sections fixes the problem. PR Close #27999 --- .github/CODEOWNERS | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2c7c6d8f09..3f6ead0e19 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -731,14 +731,6 @@ testing/** @angular/fw-test -# ================================================ -# Public API -# ================================================ - -/tools/public_api_guard/** @angular/fw-public-api - - - # ================================================ # Build & CI Owners # ================================================ @@ -755,6 +747,14 @@ testing/** @angular/fw-test +# ================================================ +# Public API +# ================================================ + +/tools/public_api_guard/** @angular/fw-public-api + + + # ================================================ # CODEOWNERS Owners owners ... # ================================================