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"] })