From 88b7a3c0bb26554cbfbdfa7a61f1f6ba2809824f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hanu=C5=A1?= Date: Mon, 6 Jul 2026 22:16:23 +0200 Subject: [PATCH] Rename auto-applied t-dx label to t-builders The Builders team issue label was renamed from t-dx to t-builders; update the new-issue auto-labeling workflow to apply the current label. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/issue_labeling.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_labeling.yaml b/.github/workflows/issue_labeling.yaml index b1946c704..eec08886a 100644 --- a/.github/workflows/issue_labeling.yaml +++ b/.github/workflows/issue_labeling.yaml @@ -13,7 +13,7 @@ jobs: issues: write steps: - # Add the "t-dx" label to all new issues + # Add the "t-builders" label to all new issues - uses: actions/github-script@v9 with: script: | @@ -21,5 +21,5 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ["t-dx"] + labels: ["t-builders"] })