From 0270a42a6ca002cc3e6304aaf551f638709a3d52 Mon Sep 17 00:00:00 2001
From: Moritz <moritz@suemmermann.de>
Date: Tue, 2 Jan 2024 18:38:44 +0100
Subject: [PATCH] Fix `labeler.yml`

---
 .github/labeler.yml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/.github/labeler.yml b/.github/labeler.yml
index b49eaf2cc5..6d477b3173 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,16 +1,21 @@
 # Configuration for .github/workflows/pull_request_label.yml.
 
 'type-infra':
-  - '.github/**'
+  - changed-files:
+      - any-glob-to-any-file: '.github/**'
 
 'package:cronet_http':
-  - 'pkgs/cronet_http/**'
+  - changed-files:
+      - any-glob-to-any-file: 'pkgs/cronet_http/**'
 
 'package:cupertino_http':
-  - 'pkgs/cupertino_http/**'
+  - changed-files:
+      - any-glob-to-any-file: 'pkgs/cupertino_http/**'
 
 'package:http':
-  - 'pkgs/http/**'
+  - changed-files:
+      - any-glob-to-any-file: 'pkgs/http/**'
 
 'package:http_client_conformance_tests':
-  - 'pkgs/http_client_conformance_tests/**'
+  - changed-files:
+      - any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'
\ No newline at end of file