From 9aa50bde2679e65489eb9241053b219784250c5a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 5 Jun 2026 14:22:06 +0000 Subject: [PATCH] build(workflows): fix team reviewer slug format in `namespace_declarations` The `namespace_declarations` workflow failed on every daily run with: pull request update failed: GraphQL: Could not resolve team with slug '@stdlib-js/reviewers'. (requestReviewsByLogin) Root cause: `gh pr create --reviewer` expects the `ORG/TEAM` format for teams (no `@` prefix). The previous value `@stdlib-js/reviewers` passed the literal `@` character as part of the slug, which GitHub's GraphQL `requestReviewsByLogin` mutation cannot resolve. Removing the leading `@` yields `stdlib-js/reviewers`, the correct format. Ref: https://github.com/stdlib-js/stdlib/actions/runs/26993196933 --- .github/workflows/namespace_declarations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/namespace_declarations.yml b/.github/workflows/namespace_declarations.yml index befe1502066e..4d083c439276 100644 --- a/.github/workflows/namespace_declarations.yml +++ b/.github/workflows/namespace_declarations.yml @@ -154,7 +154,7 @@ jobs: - [ ] Approve the PR once you are confident about the classification and changes made." \ --label "Documentation" \ --label "automated-pr" \ - --reviewer "@stdlib-js/reviewers" \ + --reviewer "stdlib-js/reviewers" \ --base develop \ --head "$branch_name" fi