From 0bc9160e25a998d5e5671a32e340e3ec19575372 Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Thu, 9 Dec 2021 10:40:27 -0500 Subject: [PATCH] chore: update labeler.yml to drop filepath prefixes (#4308) - update labeler.yml to drop filepath prefixes - make sure labeler enforces labels over lifetime of PR --- .github/labeler.yml | 13 ++++++------- .github/workflows/labeler.yml | 1 + 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 604d3631a..6e53c92aa 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,9 +1,8 @@ R-loom: -- ./tokio/src/sync/* -- ./tokio/src/sync/**/* -- ./tokio-util/src/sync/* -- ./tokio-util/src/sync/**/* -- ./tokio/src/runtime/* -- ./tokio/src/runtime/**/* - +- tokio/src/sync/* +- tokio/src/sync/**/* +- tokio-util/src/sync/* +- tokio-util/src/sync/**/* +- tokio/src/runtime/* +- tokio/src/runtime/**/* diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 4386c3815..6d5dd6fbe 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -11,3 +11,4 @@ jobs: - uses: actions/labeler@v3 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" + sync-labels: true