From 90ef98ce0312c7f4e961b1ac562fa77109558511 Mon Sep 17 00:00:00 2001 From: Matthew Slipper Date: Tue, 5 Apr 2022 17:38:43 -0600 Subject: [PATCH] ci: Fix the labeler The labeler wasn't applying `C-Protocol-Critical` labels correctly. I misinterpreted how the `any` rule was supposed to work. --- .github/labeler.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index e3d915af5ae6e..10b68763bdbec 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -37,4 +37,6 @@ M-ops: - any: ['ops/**/*'] C-Protocol-Critical: - - any: ['packages/data-transport-layer/**/*.ts', 'packages/contracts/**/*.sol', 'l2geth/**/*.go'] + - 'packages/data-transport-layer/**/*.ts' + - 'packages/contracts/**/*.sol' + - 'l2geth/**/*.go'