From be69bc745f26b2f58c58ed3d427cdbbfa8c56633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hanu=C5=A1?= Date: Mon, 6 Jul 2026 22:16:16 +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/update-new-issue.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-new-issue.yaml b/.github/workflows/update-new-issue.yaml index 41a561a4..08d007a9 100644 --- a/.github/workflows/update-new-issue.yaml +++ b/.github/workflows/update-new-issue.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"] })